12 lines
266 B
HTML
12 lines
266 B
HTML
|
|
{% 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 %}
|