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

18 lines
400 B
HTML

{% extends 'email/text_layout.html' %}
{% load i18n %}
{% block content %}
{% if link_domain %}
{% blocktrans trimmed %}
@{{ reporter }} has flagged a link domain for moderation.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
@{{ reporter }} has flagged behavior by @{{ reportee }} for moderation.
{% endblocktrans %}
{% endif %}
{% trans "View report" %}
{{ report_link }}
{% endblock %}