2012-04-14 12:52:56 +02:00
|
|
|
{% extends "config/base_config.html" %}
|
2012-02-15 12:04:11 +01:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
2012-04-15 12:39:28 +02:00
|
|
|
{% block title %}{{ block.super }} - {% trans "General settings" %}{% endblock %}
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2011-11-14 23:40:19 +01:00
|
|
|
<h1>{%trans "General settings" %}</h1>
|
2011-07-31 10:46:29 +02:00
|
|
|
<form action="" method="post">{% csrf_token %}
|
2012-04-15 12:39:28 +02:00
|
|
|
<fieldset>
|
|
|
|
<legend>{%trans "Event" %}</legend>
|
|
|
|
{% for field in form %}
|
|
|
|
{% if "id_event" in field.label_tag %}
|
|
|
|
<p>
|
|
|
|
{{ field.errors }}
|
2012-04-15 13:26:01 +02:00
|
|
|
{{ field.required }}
|
|
|
|
{{ field.label_tag }}
|
|
|
|
{{ field }}
|
|
|
|
{{ field.help_text }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</fieldset>
|
|
|
|
<p></p>
|
|
|
|
<fieldset>
|
|
|
|
<legend>{%trans "Frontpage" %}</legend>
|
|
|
|
{% for field in form %}
|
|
|
|
{% if "id_frontpage" in field.label_tag %}
|
|
|
|
<p>
|
|
|
|
{{ field.errors }}
|
2012-04-15 12:39:28 +02:00
|
|
|
{{ field.required }}
|
|
|
|
{{ field.label_tag }}
|
|
|
|
{{ field }}
|
|
|
|
{{ field.help_text }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</fieldset>
|
|
|
|
<p></p>
|
|
|
|
<fieldset style="width: 410px;">
|
|
|
|
<legend>{%trans "System" %}</legend>
|
|
|
|
{% for field in form %}
|
|
|
|
{% if "id_system" in field.label_tag %}
|
|
|
|
<p>
|
|
|
|
{{ field.errors }}
|
|
|
|
{{ field.required }}
|
|
|
|
{{ field.label_tag }}
|
|
|
|
{{ field }}
|
|
|
|
{{ field.help_text }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</fieldset>
|
2011-07-31 10:46:29 +02:00
|
|
|
<p>
|
2011-11-14 19:33:45 +01:00
|
|
|
<button class="button" type="submit">
|
2011-07-31 10:46:29 +02:00
|
|
|
<span class="icon ok">{%trans 'Save' %}</span>
|
|
|
|
</button>
|
|
|
|
<a href='{% url config_general %}'>
|
2011-11-14 19:33:45 +01:00
|
|
|
<button class="button" type="button" onclick="window.location='{% url config_general %}'">
|
2011-07-31 10:46:29 +02:00
|
|
|
<span class="icon cancel">{%trans 'Cancel' %}</span>
|
2011-11-14 19:33:45 +01:00
|
|
|
</button>
|
2011-07-31 10:46:29 +02:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|