coriplus/app/templates/report_message.html

12 lines
266 B
HTML
Raw Normal View History

2019-11-11 19:15:55 +01:00
{% extends "report_base.html" %}
{% block body %}
{% for reason in report_reasons %}
<form method="POST">
<div class="item" onclick="submitReport({{ reason[0] }})">
<h2>{{ reason[1] }}</h2>
</div>
</form>
{% endfor %}
{% endblock %}