mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
13 lines
300 B
HTML
13 lines
300 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Report Sent{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Report</legend>
|
|
<p>Your report has been sent.</p>
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|