forked from rc/aircox
111 lines
3.7 KiB
HTML
111 lines
3.7 KiB
HTML
{% extends "aircox/page.html" %}
|
|
{% comment %}Display a list of pages{% endcomment %}
|
|
{% load i18n aircox %}
|
|
|
|
{% block title %}
|
|
{% if not parent %}{{ view.model|verbose_name:True|title }}
|
|
{% else %}
|
|
{% with parent.title as title %}
|
|
{% with model|default:"Publications"|verbose_name:true|capfirst as model %}
|
|
{% comment %}Translators: title when pages are filtered for a specific parent page, e.g.: Articles of My Incredible Show{% endcomment %}
|
|
{% blocktrans %}{{ model }} of {{ title }}{% endblocktrans %}
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block filters %}
|
|
<div class="navbar-branding">
|
|
<h4 class="navbar-item title">{% trans "Filters" %}</h4>
|
|
</div>
|
|
<form method="GET" action="" class="navbar-menu">
|
|
<div class="navbar-start">
|
|
<div class="navbar-item">
|
|
{% block list_filters %}
|
|
<div class="field is-horizontal">
|
|
<div class="field-label">
|
|
<label class="label">{% trans "Categories" %}</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field is-grouped is-narrow">
|
|
<div class="control">
|
|
{% for category in filter_categories %}
|
|
<label class="checkbox">
|
|
<input type="checkbox" class="checkbox" name="categories"
|
|
value="{{ category.slug }}"
|
|
{% if category.slug in categories %}checked{% endif %} />
|
|
{{ category.title }}
|
|
</label>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="navbar-end">
|
|
<div class="navbar-item">
|
|
<div class="field is-grouped is-grouped-right">
|
|
<div class="control">
|
|
<button class="button is-primary"/>{% trans "Apply" %}</button>
|
|
</div>
|
|
<div class="control">
|
|
<a href="?" class="button is-secondary">{% trans "Reset" %}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
|
|
{% block main %}{{ block.super }}
|
|
<section role="list">
|
|
{% with has_headline=True %}
|
|
{% for object in object_list %}
|
|
{% block list_object %}
|
|
{% include object.item_template_name|default:item_template_name %}
|
|
{% endblock %}
|
|
{% endfor %}
|
|
{% endwith %}
|
|
</section>
|
|
|
|
{% if is_paginated %}
|
|
<hr>
|
|
{% update_query request.GET.copy page=None as GET %}
|
|
{% with GET.urlencode as GET %}
|
|
<nav class="pagination is-centered" role="pagination" aria-label="{% trans "pagination" %}">
|
|
{% block pagination %}
|
|
{% if page_obj.has_previous %}
|
|
<a href="?{{ GET }}&page={{ page_obj.previous_page_number }}" class="pagination-previous">
|
|
{% else %}
|
|
<a class="pagination-previous" disabled>
|
|
{% endif %}
|
|
{% comment %}Translators: Bottom of the list, "previous page"{% endcomment %}
|
|
{% trans "Previous" %}</a>
|
|
|
|
{% if page_obj.has_next %}
|
|
<a href="?{{ GET }}&page={{ page_obj.next_page_number }}" class="pagination-next">
|
|
{% else %}
|
|
<a class="pagination-next" disabled>
|
|
{% endif %}
|
|
{% comment %}Translators: Bottom of the list, "Nextpage"{% endcomment %}
|
|
{% trans "Next" %}</a>
|
|
|
|
<ul class="pagination-list">
|
|
{% for i in paginator.page_range %}
|
|
<li>
|
|
<a class="pagination-link {% if page_obj.number == i %}is-current{% endif %}"
|
|
href="?{{ GET }}&page={{ i }}">{{ i }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|
|
</nav>
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|