chrono/chrono/manager/templates/chrono/manager_agenda_form.html

24 lines
644 B
HTML

{% extends "chrono/manager_agenda_view.html" %}
{% load i18n %}
{% block breadcrumb %}
{{ block.super }}
<a href="{{ agenda.get_settings_url }}">{% trans 'Settings' %}</a>
<a href="">{% firstof title view.title %}</a>
{% endblock %}
{% block appbar %}
<h2>{% firstof title view.title %}</h2>
{% endblock %}
{% block content %}
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form.as_p }}
<div class="buttons">
<button class="submit-button">{% trans "Save" %}</button>
<a class="cancel" href="{{ agenda.get_settings_url }}">{% trans 'Cancel' %}</a>
</div>
</form>
{% endblock %}