authentic/src/authentic2/manager/templates/authentic2/manager/journal.html

44 lines
1.3 KiB
HTML

{% extends "authentic2/manager/base.html" %}
{% load i18n gadjo %}
{% block page-title %}{{ block.super }} - {% trans "Journal" %}{% endblock %}
{% block breadcrumb %}
{{ block.super }}
{% block breadcrumb-before-title %}
{% endblock %}
<a href="#">{% trans 'Journal' %}</a>
{% for caption, url in date_hierarchy.back_urls %}
<a href="{{ url }}">{{ caption }}</a>
{% endfor %}
{% endblock %}
{% block sidebar %}
<aside id="sidebar">
<h3>{% trans "Search" context "title" %}</h3>
<div class="journal-list--search-form">
<form action="{{ form.url }}">
{{ form|with_template }}
<button>{% trans "Search" %}</button>
</form>
</div>
{% if date_hierarchy.choice_name %}
<h4>{{ date_hierarchy.choice_name }}</h4>
<p>
{% for caption, url in date_hierarchy.choice_urls %}
<a href="{{ url }}">{{ caption }}</a>
{% endfor %}
</p>
{% endif %}
<div class="documentation">
{% for documentation in form.search_engine_class.documentation %}
<p>{{ documentation|safe }}</p>
{% endfor %}
</div>
</aside>
{% endblock %}
{% block main %}
{% include "journal/event_list.html" %}
{% endblock %}