OpenSlides/openslides/participant/templates/participant/config.html

23 lines
670 B
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 "Participant settings" %}{% endblock %}
2011-07-31 10:46:29 +02:00
{% block content %}
<h1>{% trans "Participant settings" %}</h1>
2011-07-31 10:46:29 +02:00
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<p>
<button class="button" type="submit">
<span class="icon ok">{% trans 'Save' %}</span>
2011-07-31 10:46:29 +02:00
</button>
<a href='{% url config_application %}'>
<button class="button" type="button" onclick="window.location='{% url config_application %}'">
<span class="icon cancel">{% trans 'Cancel' %}</span>
</button>
2011-07-31 10:46:29 +02:00
</a>
</p>
</form>
{% endblock %}