2012-04-14 12:52:56 +02:00
|
|
|
|
{% extends "config/base_config.html" %}
|
2012-02-15 12:04:11 +01:00
|
|
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
2012-07-13 01:10:58 +02:00
|
|
|
|
{% block title %}{{ block.super }} – {% trans "Participant settings" %}{% endblock %}
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
|
|
|
|
{% block content %}
|
2012-07-16 14:00:29 +02:00
|
|
|
|
<h1>{% trans "Participant settings" %}</h1>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
|
|
|
{{ form.as_p }}
|
|
|
|
|
<p>
|
2011-11-14 19:33:45 +01:00
|
|
|
|
<button class="button" type="submit">
|
2012-07-16 14:00:29 +02:00
|
|
|
|
<span class="icon ok">{% trans 'Save' %}</span>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
</button>
|
2012-04-15 12:39:28 +02:00
|
|
|
|
<a href='{% url config_application %}'>
|
|
|
|
|
<button class="button" type="button" onclick="window.location='{% url config_application %}'">
|
2012-07-16 14:00: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 %}
|