404.html 530 Bytes
Newer Older
1
{% extends "base.html" %}
2
{% load i18n %}
3 4 5 6 7 8

{% block title %}{% trans "Page not found" %}{% endblock %}

{% block page_title %}{% trans "Page not found" %}{% endblock page_title %}

{% block content %}
9 10 11 12 13 14 15 16 17 18
<div class="alert alert-warning" style="font-size: 22px; margin-top: 2em;">
  <div class="row">
    <div class="col-md-2" style="text-align: center;">
      HTTP 404
    </div>
    <div class="col-md-10" style="text-align: center;">
      {% trans "This page does not exist." %}
    </div>
  </div>
</div>
19
{% endblock content %}