fnp
/
fnp-django-template.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
74ee43756da1e12159dd8a248fc610ce36dfac11
[fnp-django-template.git]
/
src
/
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 %}