|
546
|
1 |
{% extends "base.html" %} |
|
|
2 |
{% load i18n %} |
|
|
3 |
{% load static %} |
|
|
4 |
|
|
|
5 |
|
|
|
6 |
{% block title %}{{block.super}} > {% trans 'Page not found' %}{% endblock %} |
|
|
7 |
|
|
|
8 |
{% block css_import %} |
|
|
9 |
{{block.super}} |
|
|
10 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/index.css' %}" /> |
|
|
11 |
{% endblock %} |
|
|
12 |
|
|
|
13 |
{% block main_content %} |
|
|
14 |
<div class="all-title"> |
|
|
15 |
<h1>{% trans 'Page not found' %}</h1> |
|
|
16 |
</div> |
|
|
17 |
<div class="description"> |
|
|
18 |
<p>{% trans 'Sorry, but the requested page could not be found.' %}</p> |
|
|
19 |
</div> |
|
|
20 |
{% endblock %} |