summaryrefslogtreecommitdiffstats
path: root/templates/users/report.html
blob: 557b35e6f819f0430dcf9f6f6da3ef189f4c32b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "base.html" %}

{% block title %}Report{% endblock %}

{% block content %}
    <form action="." method="POST">
        {% csrf_token %}
        <fieldset>
            <legend>Report</legend>
            <label>Reporting</label>
            {% if post %}
                {% include "activities/_mini_post.html" %}
            {% else %}
                {% include "activities/_identity.html" %}
            {% endif %}
            {% include "forms/_field.html" with field=form.type %}
            {% include "forms/_field.html" with field=form.complaint %}
            {% if not identity.local %}
                {% include "forms/_field.html" with field=form.forward %}
            {% endif %}
        </fieldset>

        <div class="buttons">
            <button>Send Report</button>
        </div>
    </form>
{% endblock %}