app/soc/templates/soc/error.html
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 15 Mar 2009 20:42:21 +0000
changeset 1885 6b7d5e6a7fd2
parent 1580 947a0ee153a4
permissions -rw-r--r--
Fixed an Epic Fail in StudentProposal logic ^_^. Import was wrong. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

{% 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 %}