Clarifies report headers in moderation panel

This commit is contained in:
Mouse Reeve
2021-03-12 16:20:10 -08:00
parent 7323f63803
commit 1617cfaac7
2 changed files with 7 additions and 3 deletions

View File

@ -3,7 +3,7 @@
{% load humanize %}
{% block card-header %}
<h2 class="card-header-title has-background-white-ter is-block">
<a href="{% url 'settings-report' report.id %}">{{ report.user.username }}</a>
<a href="{% url 'settings-report' report.id %}">{% blocktrans with report_id=report.id username=report.user.username %}Report #{{ report_id }}: {{ username }}{% endblocktrans %}</a>
</h2>
{% endblock %}