diff --git a/bookwyrm/templates/settings/reports/report.html b/bookwyrm/templates/settings/reports/report.html index f26892af5..e0c86af6c 100644 --- a/bookwyrm/templates/settings/reports/report.html +++ b/bookwyrm/templates/settings/reports/report.html @@ -57,9 +57,9 @@ {% endif %} {% if report.reported_user %} -{% include 'settings/users/user_info.html' with reported_user=report.reported_user %} +{% include 'settings/users/user_info.html' with user=report.reported_user %} -{% include 'settings/users/user_moderation_actions.html' with reported_user=report.reported_user %} +{% include 'settings/users/user_moderation_actions.html' with user=report.reported_user %} {% endif %}
@@ -70,8 +70,8 @@
  • - {% blocktrans trimmed with reported_user=report.user|username user_link=report.user.local_path %} - {{ reported_user}} opened this report + {% blocktrans trimmed with user=report.user|username user_link=report.user.local_path %} + {{ user }} opened this report {% endblocktrans %}

    {{ report.created_date }} @@ -83,12 +83,12 @@

    {% if comment.action_type == "comment" %} - {% blocktrans trimmed with reported_user=comment.reported_user|username user_link=comment.reported_user.local_path %} - {{ reported_user}} commented on this report: + {% blocktrans trimmed with user=comment.user|username user_link=comment.user.local_path %} + {{ user}} commented on this report: {% endblocktrans %} {% else %} - {% blocktrans trimmed with reported_user=comment.reported_user|username user_link=comment.reported_user.local_path %} - {{ reported_user}} took an action on this report: + {% blocktrans trimmed with user=comment.user|username user_link=comment.user.local_path %} + {{ user}} took an action on this report: {% endblocktrans %} {{ comment.get_action_type_display }}