Revision 0e10079e99e8bbea94a2f0c47d21bdfe8131c603 authored by Jenkins on 02 October 2014, 17:17:51 UTC, committed by Gerrit Code Review on 02 October 2014, 17:17:51 UTC
2 parent s a8bfe3c + 63a5ad9
Raw File
403.html
{% extends "base.html" %}
{% load i18n %}
{% load url from future %}

{% block title %} - {% trans "Forbidden" %}{% endblock %}

{% block content %}
  <div id="right_content">
    <div id="page_head">
      <h2 id="page_heading">{% trans "Forbidden" %}</h2>
      <p id="page_description">{% trans "You do not have the required privileges to access this content.
      If you believe this message to be in error, please contact your project manager." %}</p>
    </div>
  </div>
{% endblock %}

{% block sidebar %}
  <div id="sidebar">
    <ul id="navigation">
      {% block nav_home %}
      <li><h3><a href="{% url 'index' %}">{% trans "Home" %}</a></h3></li>
      {% endblock %}

      {% block nav_projects %}
      <li><h3><a href="{% url 'index' %}">{% trans "Projects" %}</a></h3></li>
      {% endblock %}
    </ul>
  </div> <!-- end sidebar -->
{% endblock %}
back to top