app/soc/templates/soc/error.html
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 22 Feb 2009 10:55:24 +0000
changeset 1457 9fd31955cc49
parent 543 280a1ac6bcc1
child 1580 947a0ee153a4
permissions -rw-r--r--
Make use of site_name where possible Patch by: Sverre Rabbelier

{% extends "soc/base.html" %}
{% comment %}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
{% endcomment %}
{% block page_title %}
 {%if title %}
  {{ title }}
 {% else %}
  Error{% if status %} {{ status }}{% endif %}
 {% endif %}
{% endblock %}
{% block header_title %}
 {%if header %}
  {{ header }}
 {% else %}
  {% comment %}
   Attempt to use title again if header is not defined.
  {% endcomment %}
  {%if title %}
   {{ title }}
  {% else %}
   Error{% if status %} {{ status }}{% endif %}
  {% endif %}
 {% endif %}
{% endblock %}
{% block body %}
<div class="error">
{%if status %}Error {{ status }}: {% endif %}{{ message|safe }}
</div>
{% endblock %}