]> git.0d.be Git - django-panik-nonstop.git/blob - nonstop/templates/nonstop/zone_settings.html
061a0f30c3ea8364033ada63711440faeb4a17a2
[django-panik-nonstop.git] / nonstop / templates / nonstop / zone_settings.html
1 {% extends "base.html" %}
2 {% load gadjo i18n %}
3
4 {% block appbar %}
5 <h2>Nonstop — {{ zone.title }}</h2>
6 {% endblock %}
7
8 {% block more-user-links %}
9 {{ block.super }}
10 <a href="{% url 'nonstop-quick-links' %}">Gestion nonstop</a>
11 {% endblock %}
12
13 {% block content %}
14 <form method="POST">
15 {% csrf_token %}
16 {{form|with_template}}
17
18   <div class="buttons">
19     <button class="submit-button">{% trans "Save" %}</button>
20     <a class="cancel" href="{% url 'nonstop-quick-links' %}">{% trans "Cancel" %}</a>
21   </div>
22
23 </form>
24 {% endblock %}