1 {% extends basetemplate %}
5 {% block subtitle %}{% trans "Static pages" %}{% endblock %}
6 {% block pagename %}{% trans "Static pages" %}{% endblock %}
7 {% block description %}{% trans "Allows you to create a set of static pages" %}{% endblock %}
9 {% block admincontent %}
10 <h1>{% trans "Select page to edit" %}</h1>
11 <ul class="object-tools">
12 <li><a class="addlink" href="{% url "admin_new_page" %}">{% trans "New page" %}</a></li>
15 <table style="width: 100%">
16 <caption>{% trans "Pages" %}</caption>
18 {% for page in pages %}
20 <th scope="row"><a href="{% url "admin_edit_page" id=page.id %}">{{ page.headline }}</a></th>
21 <td style="width: 125px;"><a class="changelink" href="{% url "admin_edit_page" id=page.id %}">{% trans "Edit" %}</a></td>
22 <td style="width: 125px;">
23 <a onclick="return confirm('{% trans "Are you sure you want to delete this page?" %}');" class="deletelink" href="{% url "admin_delete_page" id=page.id %}">