OpenSlides/openslides/config/templates/config/general.html

66 lines
1.8 KiB
HTML
Raw Normal View History

{% extends "config/base_config.html" %}
2012-02-15 12:04:11 +01:00
{% load i18n %}
{% block title %}{{ block.super }} {% trans "General settings" %}{% endblock %}
2011-07-31 10:46:29 +02:00
{% block content %}
<h1>{% trans "General settings" %}</h1>
2011-07-31 10:46:29 +02:00
<form action="" method="post">{% csrf_token %}
<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 "Welcome Widget" %}</legend>
2012-04-15 13:26:01 +02:00
{% for field in form %}
{% if "id_welcome" in field.label_tag %}
2012-04-15 13:26:01 +02:00
<p>
{{ field.errors }}
{{ 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>
<button class="button" type="submit">
<span class="icon ok">{% trans 'Save' %}</span>
2011-07-31 10:46:29 +02:00
</button>
2012-12-14 15:10:14 +01:00
<a href="{% url 'config_general' %}">
<button class="button" type="button" onclick="window.location='{% url 'config_general' %}'">
<span class="icon cancel">{% trans 'Cancel' %}</span>
</button>
2011-07-31 10:46:29 +02:00
</a>
</p>
</form>
{% endblock %}