Option to deactivate reported users

This commit is contained in:
Mouse Reeve
2021-03-12 11:13:53 -08:00
parent 422cd2da73
commit 677a49fee3
6 changed files with 52 additions and 6 deletions

View File

@ -8,8 +8,11 @@
{% endblock %}
{% block card-content %}
<div class="block">
{% if report.note %}{{ report.note }}{% else %}<em>{% trans "No notes provided" %}</em>{% endif %}
<div class="block content">
<p>
{% if report.note %}{{ report.note }}{% else %}<em>{% trans "No notes provided" %}</em>{% endif %}
</p>
<p><a href="{{ report.user.local_path }}">{% trans "View user profile" %}</a></p>
</div>
{% endblock %}