chrono/chrono/manager/templates/chrono/manager_agenda_date_view.html

18 lines
496 B
HTML

{% extends "chrono/manager_agenda_view.html" %}
{% load i18n %}
{% block appbar %}
{% block navigation %}{% endblock %}
<span class="actions">
{% block actions %}
{% if user_can_manage %}
<a href="{{ agenda.get_settings_url }}">{% trans 'Settings' %}</a>
{% endif %}
<a href="" onclick="window.print()">{% trans 'Print' %}</a>
{% include "chrono/manager_agenda_view_buttons_fragment.html" with active=kind %}
{% endblock %}
</span>
{% endblock %}