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

{{ object.title }}

{% if object.content %}
{{ object.content|safe }}
{% endif %} {% if object.category %}
{% trans "Category" %}: {{ object.category|title }}
{% endif %} {% if object.tags.count %}
{% trans "Tags" %}: {% for tag in object.tags.all %} {{ tag|title }} {% endfor %}
{% endif %} {% if object.readers.count %}
{% trans "Readers" %}: {% for reader in object.readers.all %} {{ reader.get_full_name|title }} {% endfor %}
{% endif %}
{% if object.parent %}
{% trans "Back to" %}: {{ object.parent.title }}
{% endif %} {% block extra_content %} {% category_list "Category" %} {% tags_list "Tags" %} {% popular_pages "Popular Pages" %} {% recent_pages "Recent Pages" %} {% related_pages "Related Pages by Category" object %} {% related_pages "Related Pages by Tags" object by="tags" %} {% endblock extra_content %} {% endblock content %}