]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/osqaadmin/maintenance.html
38d1d0e2c4e7861cd9985d287b4d576849c6dd98
[osqa.git] / forum / skins / default / templates / osqaadmin / maintenance.html
1 {% extends basetemplate %}
2
3 {% load i18n %}
4
5 {% block subtitle %}{% trans "Maintenance mode" %}{% endblock %}
6 {% block pagename %}{% trans "Maintenance mode" %}{% endblock %}
7 {% block description %}{% trans "Maintainance mode allows you to close your site for maintainance, allowing only a predetermined set of ip addresses to access it normally." %}{% endblock %}
8
9 {% block admincontent %}
10 <form method="POST" action="">
11     {% if in_maintenance %}
12         <h1>{% trans "Your site is currently running on maintenance mode." %}</h1>
13         <p>{% trans "You can adjust the settings bellow" %}</p>
14     {% endif %}
15     <table>
16     {{ form.as_table }}
17     </table>
18     {% if in_maintenance %}
19         <input type="submit" name="adjust" value="{% trans "Adjust settings" %}" />
20         <input type="submit" name="open" value="{% trans "Open site" %}" />
21     {% else %}
22         <input type="submit" name="close" value="{% trans "Close for maintenance" %}" />
23     {% endif %}
24 </form>
25 {% endblock %}