{% extends "default.html" %} {% block title %}{{ block.super }}{% trans 'Error' %}{% endblock%} {% block content %}

{% if user.is_authenticated %}{% blocktrans with user.username as use %}Oops {{ use }}, we caused a problem{% endblocktrans %} {% else %}{% trans '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 %}