Update report form text

This commit is contained in:
rubenwardy
2025-08-26 18:19:24 +01:00
parent bdf1c2df6e
commit 741bd23144

View File

@@ -26,6 +26,12 @@
{% else %}
<p class="text-muted">
{{ _("The full report will be visible to all ContentDB staff members, including editors and moderators.") }}
{{ _("If you are reporting something by another user, we may discuss the report with them but will not disclose who reported it.") }}
{{ _("If you are reporting something by an editor or moderator, then you should email the admin or a moderator directly to hide your identity.") }}
</p>
<form method="POST" action="" enctype="multipart/form-data">
{{ form.hidden_tag() }}
{{ render_field(form.category) }}
@@ -33,13 +39,7 @@
{{ render_field(form.title) }}
{{ render_field(form.message, class_="m-0", fieldclass="form-control markdown", data_enter_submit="1") }}
{{ render_submit_field(form.submit) }}
<p class="mt-5 text-muted">
{{ _("The full report will be visible to all ContentDB staff members, including editors and moderators.") }}
{{ _("If you are reporting content posted by another user, we may discuss the report with them but will not disclose who reported it.") }}
{{ _("If you are reporting content by an editor or moderator, then you should email the admin or a moderator directly to hide your identity.") }}
</p>
<p class="alert alert-info">
<p class="alert alert-info mt-5">
{{ _("Found a bug? Please report on the package's issue tracker or in a thread instead.") }}
</p>
</form>