{% extends 'simpel_pages/base.html' %} {% load i18n pages_tags %} {% block content %}

{{ object.title }}

{% if object.content %}
{{ object.content|safe }}
{% endif %} {% if object.parent %}
{% trans "Back to" %}: {{ object.parent.title }}
{% endif %}
{% for page in object_list %} {% include 'simpel_pages/includes/page.html' with page=page %} {% empty %} {% include 'simpel_pages/includes/no_results.html' %} {% endfor %} {% if is_paginated %} {% include 'simpel_pages/includes/pagination.html' %} {% endif %}
{% endblock content %}