This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/users/report.html

28 lines
840 B
HTML
Raw Permalink Normal View History

2022-12-17 22:45:31 +01:00
{% 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 %}