Fixes report emails always claiming to be about links

This commit is contained in:
Mouse Reeve 2022-11-14 18:03:36 -08:00
parent e655f5c2f3
commit 5b358094ab
3 changed files with 3 additions and 2 deletions

View file

@ -48,6 +48,7 @@ def moderation_report_email(report):
if report.user:
data["reportee"] = report.user.localname or report.user.username
data["report_link"] = report.remote_id
data["link_domain"] = report.links.exists()
for admin in models.User.objects.filter(
groups__name__in=["admin", "moderator"]

View file

@ -3,7 +3,7 @@
{% block content %}
<p>
{% if report_link %}
{% if link_domain %}
{% blocktrans trimmed %}
@{{ reporter }} has flagged a link domain for moderation.

View file

@ -2,7 +2,7 @@
{% load i18n %}
{% block content %}
{% if report_link %}
{% if link_domain %}
{% blocktrans trimmed %}
@{{ reporter }} has flagged a link domain for moderation.
{% endblocktrans %}