flat_pages.html 230 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 {% 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 %}