feat: Add message when no comment is added to report

This commit is contained in:
moanos [he/him] 2025-03-10 21:09:06 +01:00
parent 3daf83d725
commit 3607eb0e4e

View File

@ -13,8 +13,12 @@
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
<p><b>{% translate "Kommentar zur Meldung" %}:</b> <p>
{{ report.user_comment }} {% if report.user_comment %}
<b>{% translate "Kommentar zur Meldung" %}:</b> {{ report.user_comment }}
{% else %}
<i>{% translate 'Es wurde kein Kommentar zur Meldung hinzugefügt.' %}</i>
{% endif %}
</p> </p>
{% if is_mod_or_above %} {% if is_mod_or_above %}
<div class="container-edit-buttons"> <div class="container-edit-buttons">