Márton Lente
3ab9a068e3
Add template flatpage donate_once to display donation box on donate-once page. Add blocks flatpage_content_extra to extend flatpage template with content custom.
26 lines
767 B
HTML
26 lines
767 B
HTML
{% extends "blender_fund/layout.html" %}
|
|
|
|
{% block page_header %}{% endblock page_header %}
|
|
|
|
{% block page_title %}{{ flatpage.title }} — {% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
{% if request.user.is_staff %}
|
|
<div class="btn-row justify-content-end">
|
|
<a class="btn btn-admin" href="{% url 'admin:flatpages_flatpage_change' flatpage.id %}">
|
|
<i class="i-edit"></i>
|
|
<span>Edit Page</span>
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{# Add blocks 'flatpage_content_extra' to append or prepend custom content to fatpage content in templates. #}
|
|
{% block flatpage_content_extra_start %}{% endblock %}
|
|
|
|
{{ flatpage.content }}
|
|
|
|
{% block flatpage_content_extra_end %}{% endblock %}
|
|
</div>
|
|
{% endblock %}
|