1
0
mirror of https://github.com/django/django.git synced 2024-11-18 07:26:04 +00:00
django/templates/admin/404.html
Adrian Holovaty 52f5c949e9 Added default Django admin templates
git-svn-id: http://code.djangoproject.com/svn/django/trunk@92 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-16 03:46:17 +00:00

12 lines
199 B
HTML

{% extends "base_site" %}
{% block title %}Page not found{% endblock %}
{% block content %}
<h2>Page not found</h2>
<p>We're sorry, but the requested page could not be found.</p>
{% endblock %}