{% extends "base.html" %}
{% block title %}{{ _("Something went wrong - Yaffo") }}{% endblock %}
{% block extra_styles %}
{% endblock %}
{% block content %}
{% from "components/error_screen.html" import error_screen %}
{{ error_screen(
500,
_("Something went wrong in the darkroom"),
_("A processing error stopped this page from loading. Give it another moment — if it keeps happening, the trouble is on our end, not yours.")
) }}
{% endblock %}