f2b2289b4a
Django 1.7 support ends in December 2015 (https://www.djangoproject.com/download/#supported-versions), so it will not be supported by Mitaka release. This patch removes many of the deprecation warnings:- `RedirectView.permanent` change: https://docs.djangoproject.com/en/1.8/ref/class-based-views/base/ `url` change: https://docs.djangoproject.com/en/1.8/internals/deprecation/ See version 1.5 notes for the url and ssi template tag change `django.forms.utils` change: https://docs.djangoproject.com/en/1.8/internals/deprecation/ See version 1.9 notes `firstof` change: https://docs.djangoproject.com/en/1.8/internals/deprecation/ See version 1.8 notes for cycle and firstof template tags Change-Id: If546c087e73d189daa92e5bd63f0533fcf19089f Partially-Implements: blueprint drop-dj17
28 lines
793 B
HTML
28 lines
793 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %} - {% trans "Page Not Found" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="right_content">
|
|
<div id="page_head">
|
|
<h2 id="page_heading">{% trans "The page you were looking for doesn't exist" %}</h2>
|
|
<p id="page_description">{% trans "You may have mistyped the address or the page may have moved." %}</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 %}
|