khaganat-web/nsfw/templates/nsfw/alert.html
2018-11-08 21:09:17 +01:00

19 lines
744 B
HTML

{% load i18n %}
<article class="message is-warning">
<div class="message-header">
<p>{% trans "NSFW content" %}</p>
</div>
<div class="message-body">
<p>{% trans "The content you were about to see is flagged as sensitive and therefore cannot be seen while the safe mode is activated." %}</p>
<div>
<p>
{% if prev_url %}
<a class="button is-link" href="{{ prev_url }}" role="button">{% trans "Go back" %}</a>
{% elif go_home %}
<a class="button is-link" href="{% url "index" %}" role="button">{% trans "Go back home" %}</a>
{% endif %}
</p>
{% include "nsfw/duration.html" %}
</div>
</div>
</article>