diff options
Diffstat (limited to 'ishtar_common/templates/404.html')
| -rw-r--r-- | ishtar_common/templates/404.html | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/ishtar_common/templates/404.html b/ishtar_common/templates/404.html index f2c57d496..647c6df8c 100644 --- a/ishtar_common/templates/404.html +++ b/ishtar_common/templates/404.html @@ -1,17 +1,5 @@ -{% load i18n %}<!doctype html> -<html lang="en"> -<head> - <link rel="shortcut icon" href="{{STATIC_URL}}/media/images/favicon.png"> - <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} - </title> - <link rel="stylesheet" href="{{STATIC_URL}}/media/style.css?ver={{VERSION}}" /> -</head> -<body> -<div> - <h3>{% trans "Page not found" %}</h3> - <p><a href='/'>{% trans "Back to main page" %}</a></p> -</div> -</body> - -</html> +{% extends "500.html" %} +{% load i18n %}{% block content %} +<h3>{% trans "Page not found" %}</h3> +{% endblock %} |
