bookwyrm/bookwyrm/templates/email/moderation_report/text_content.html

18 lines
400 B
HTML
Raw Normal View History

2021-11-18 04:22:00 +00:00
{% extends 'email/text_layout.html' %}
{% load i18n %}
{% block content %}
{% 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
{% trans "View report" %}
{{ report_link }}
{% endblock %}