{% extends "default.html" %} {% load i18n %} {% block title %}{{ block.super }}Error{% endblock%} {% block body %}

{% if user.is_authenticated %}{% blocktrans with user.username as use %}Oops {{ use }}, we caused a problem{% endblocktrans %} {% else %}Oops, we caused a problem {% endif %}

{% trans "We have been notified of this and will be working on it quickly." %}

{% blocktrans with request.get_full_path as reqpath %}You may want to try this page again in a little bit.{% endblocktrans %}

{% endblock %}