Files
interchan/board/templates/board/report_form.html
Alek Ratzloff b838663d50 Add preliminary report system
The report system is pretty low-tech. However the scaffolding is there
for a lot of new stuff. What we currently have:

* Users can create reports
* Staff can view reports
* Admins can create report templates

There's a post drop-down menu available on all posts now, too. This is
where "report post" menu item lives and other things like that can be
added too.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2022-06-14 14:56:50 -07:00

16 lines
423 B
HTML

{% extends "board/base.html" %}
{% load l10n %}
{# Title #}
{% block title %}{% localize on %}Reporting post {{post.id}}{% endlocalize %}{% endblock %}
{# Body #}
{% block content %}
<div class="row">
<form method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
<tr><td>&nbsp;</td><td><input type="submit" value="Submit"></td></tr>
</table>
</form>
</div>
{% endblock %}