lib.itmens/common/templates/400.html

36 lines
1.1 KiB
HTML
Raw Normal View History

2023-02-04 00:45:17 -05:00
{% load static %}
{% load i18n %}
{% load l10n %}
{% load mastodon %}
{% load thumb %}
2025-02-06 19:17:53 +00:00
{% get_current_language as LANGUAGE_CODE %}
2023-02-04 00:45:17 -05:00
<!DOCTYPE html>
2025-02-06 19:17:53 +00:00
<html lang="{{ LANGUAGE_CODE }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-04-23 23:57:49 -04:00
<title>{{ site_name }} - 400</title>
2024-01-12 18:38:09 -05:00
<meta name="robots" content="noindex">
2024-01-07 17:24:34 -05:00
{% include "common_libs.html" %}
</head>
<body>
{% include "_header.html" %}
<main class="container">
<article class="error">
<header>
2024-04-23 23:57:49 -04:00
<h3>🤷🏻 {{ exception }}</h3>
</header>
2024-04-23 23:57:49 -04:00
{% blocktrans %}You may have submitted invalid data, or the content may have been deleted by the author.{% endblocktrans %}
<br>
{% blocktrans %}If you believe this is our mistake, please contact us through the link at the bottom of the page.{% endblocktrans %}
2023-06-05 17:22:34 -04:00
<section>
{% if exception.additonal_detail %}
{% for e in exception.additonal_detail %}<p>{{ e }}</p>{% endfor %}
{% endif %}
</section>
</article>
</main>
2023-06-09 03:01:17 -04:00
{% include "_footer.html" %}
</body>
2023-02-04 00:45:17 -05:00
</html>