This commit is contained in:
Ross
2021-05-04 22:18:53 +01:00
parent c910e9d273
commit 59ae57d7f0
+12
View File
@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block content %}
<h2>Add Feedback</h2>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
</form>
{% endblock %}