404.html 283 Bytes
Newer Older
Dányi Bence committed
1
{% extends "base.html" %}
2 3
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
Dányi Bence committed
4 5 6 7


{% block content %}
<div id="http-error">
8
    <h1>404 - {% trans ":(" %}</h1>
Dányi Bence committed
9 10 11 12 13
    <p>
        {% trans "The requested page does not exists... Please go away..." %}
    </p>
</div>
{% endblock %}