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

20 lines
619 B
HTML

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