Add prompt to read ContentDB's rules to review page

This commit is contained in:
rubenwardy 2024-06-05 19:28:16 +01:00
parent 380f009529
commit 6a53f25665

@ -16,12 +16,17 @@
{% block content %}
<h1>{{ _("Post a review for %(title)s by %(author)s", title=self.link(), author=package.author.display_name) }}</h1>
<p class="alert alert-primary">
{{ _("Please make sure you read ContentDB's <a href='/rules/'>rules</a>") }}
</p>
{% if package.issueTracker %}
<p class="alert alert-secondary">
{{ _("Found a bug? Post on the <a href='%(url)s'>issue tracker</a> instead.", url=package.issueTracker) }}<br />
</p>
{% endif %}
{% from "macros/forms.html" import render_field, render_submit_field, render_toggle_field %}
<form method="POST" action="" enctype="multipart/form-data">
{{ form.hidden_tag() }}