lib.itmens/common/templates/400.html
2024-05-09 11:22:29 -04:00

34 lines
1.1 KiB
HTML

{% load static %}
{% load i18n %}
{% load l10n %}
{% load mastodon %}
{% load thumb %}
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ site_name }} - 400</title>
<meta name="robots" content="noindex">
{% include "common_libs.html" %}
</head>
<body>
{% include "_header.html" %}
<main class="container">
<article class="error">
<header>
<h3>🤷🏻 {{ exception }}</h3>
</header>
{% 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 %}
<section>
{% if exception.additonal_detail %}
{% for e in exception.additonal_detail %}<p>{{ e }}</p>{% endfor %}
{% endif %}
</section>
</article>
</main>
{% include "_footer.html" %}
</body>
</html>