20 lines
631 B
HTML
20 lines
631 B
HTML
{% extends "system/base_system.html" %}
|
|
{% block title %}{{ block.super }} - {%trans "Configuration" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{%trans "Agenda settings" %}</h1>
|
|
<form action="" method="post">{% csrf_token %}
|
|
{{ form_agenda.as_p }}
|
|
<p>
|
|
<button class="button" type="submit">
|
|
<span class="icon ok">{%trans 'Save' %}</span>
|
|
</button>
|
|
<a href='{% url config_agenda %}'>
|
|
<button class="button" type="button" onclick="window.location='{% url config_agenda %}'">
|
|
<span class="icon cancel">{%trans 'Cancel' %}</span>
|
|
</button>
|
|
</a>
|
|
</p>
|
|
</form>
|
|
{% endblock %}
|