Files
interchan/board/templates/board/report_form.html
2022-07-17 18:53:56 -07:00

16 lines
453 B
HTML

{% extends "board/base.html" %}
{% load i18n %}
{# Title #}
{% block title %}{% blocktranslate %}Reporting post {{post.id}}{% endblocktranslate %}{{block.super}}{% endblock title %}
{# 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 %}