moviewyrm/bookwyrm/templates/notifications/items/report.html

17 lines
481 B
HTML
Raw Normal View History

2022-01-11 18:47:55 +00:00
{% extends 'notifications/items/layout.html' %}
2021-10-02 16:50:48 +00:00
{% load i18n %}
{% block primary_link %}{% spaceless %}
{% url 'settings-report' notification.related_report.id %}
{% endspaceless %}{% endblock %}
2021-10-02 16:50:48 +00:00
{% block icon %}
<span class="icon icon-warning"></span>
{% endblock %}
{% block description %}
{% url 'settings-report' notification.related_report.id as path %}
{% blocktrans %}A new <a href="{{ path }}">report</a> needs moderation.{% endblocktrans %}
{% endblock %}