bookwyrm/bookwyrm/templates/email/moderation_report/html_content.html

24 lines
502 B
HTML
Raw Normal View History

2021-11-18 04:22:00 +00:00
{% extends 'email/html_layout.html' %}
{% load i18n %}
{% block content %}
<p>
{% if link_domain %}
2022-07-06 00:19:03 +00:00
{% blocktrans trimmed %}
@{{ reporter }} has flagged a link domain for moderation.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
@{{ reporter }} has flagged behavior by @{{ reportee }} for moderation.
{% endblocktrans %}
{% endif %}
2021-11-18 04:22:00 +00:00
</p>
{% trans "View report" as text %}
{% include 'email/snippets/action.html' with path=report_link text=text %}
{% endblock %}