Statistics
| Branch: | Tag: | Revision:

root / djnro / templates / status.html @ 1d70dbce

History | View | Annotate | Download (359 Bytes)

1
{% extends "base.html" %}
2
{% load i18n %}
3
{% block subcontent %}
4
        <h1>{% if status %}Status{% else %}{% if error %}Error{% endif%}{% endif %}</h1>
5
        <hr>
6
        <div class="span12 alert {% if status%}alert-success{% else %}{% if error %}alert-error{% endif %}{% endif %}">
7
        {% autoescape off %}{{error}}{{status}}{% endautoescape %}
8
    </div>
9
{% endblock %}