2011-01-12 13:43:31 -08:00
|
|
|
{% extends "base.html" %}
|
2011-06-03 13:40:37 +09:00
|
|
|
{% load i18n %}
|
2011-01-12 13:43:31 -08:00
|
|
|
|
2011-06-02 16:10:27 +09:00
|
|
|
{% block title %} - {% trans "Page Not Found" %}{% endblock %}
|
2011-01-12 13:43:31 -08:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div id="right_content">
|
|
|
|
<div id="page_head">
|
2011-12-15 14:26:49 -08:00
|
|
|
<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>
|
2011-01-12 13:43:31 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block sidebar %}
|
|
|
|
<div id="sidebar">
|
|
|
|
<ul id="navigation">
|
|
|
|
{% block nav_home %}
|
2013-03-27 17:16:13 -07:00
|
|
|
<li><h3><a href="{% url 'index' %}">{% trans "Home" %}</a></h3></li>
|
2011-01-12 13:43:31 -08:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block nav_projects %}
|
2013-03-27 17:16:13 -07:00
|
|
|
<li><h3><a href="{% url 'index' %}">{% trans "Projects" %}</a></h3></li>
|
2011-01-12 13:43:31 -08:00
|
|
|
{% endblock %}
|
|
|
|
</ul>
|
|
|
|
</div> <!-- end sidebar -->
|
|
|
|
{% endblock %}
|