First attempt
[fnp-django-template.git] / project_name / templates / 404.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{% trans "Page not found" %}{% endblock %}
5
6 {% block body %}
7
8 <h1>{% trans "Page not found" %}</h1>
9
10 <p class="notice">
11     {% trans "The page you were looking for doesn't exist." %}
12 </p>
13
14 {% endblock %}