flat_pages.html 230 Bytes
{% extends "base.html" %}

{% block text-content %}
    <ul>
        {% for page in pages %}
            <li><a href="{% url 'flat_page_edit' page.text_id %}">{{ page.title }}</a></li>
        {% endfor %}
    </ul>
{% endblock %}