Sith/core/templates/core/page_list.jinja

22 lines
423 B
Plaintext
Raw Normal View History

2016-02-01 16:35:55 +00:00
{% extends "core/base.jinja" %}
{% block title %}
2016-07-19 17:03:16 +00:00
{% trans %}Page list{% endtrans %}
{% endblock %}
{% block content %}
2016-07-19 17:03:16 +00:00
{% if page_list %}
<h3>{% trans %}Page list{% endtrans %}</h3>
<ul>
{% for p in page_list %}
2017-02-24 03:36:36 +00:00
<li><a href="{{ p.get_absolute_url() }}">{{ p.get_display_name() }}</a></li>
2016-07-19 17:03:16 +00:00
{% endfor %}
</ul>
{% else %}
{% trans %}There is no page in this website.{% endtrans %}
{% endif %}
{% endblock %}