2011-11-14 23:40:19 +01:00
|
|
|
{% extends "system/base_system.html" %}
|
2012-02-15 12:04:11 +01:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}{{ block.super }} - {% trans "Configuration" %}{% endblock %}
|
2011-11-14 23:40:19 +01:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>{%trans "Application settings" %}</h1>
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
|
|
{{ form_application.as_p }}
|
|
|
|
<p>
|
|
|
|
<button class="button" type="submit">
|
|
|
|
<span class="icon ok">{%trans 'Save' %}</span>
|
|
|
|
</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>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|