500.html 285 Bytes
Newer Older
Bence Dányi committed
1 2 3 4 5 6 7 8 9 10 11 12 13
{% extends "base.html" %}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}


{% block content %}
<div id="http-error">
    <h1>500 - {% trans ":(" %}</h1>
    <p>
        {% trans "Internal Server Error... Please leave the server alone..." %}
    </p>
</div>
{% endblock %}