blob: 7ae29ab9e91c3771802254569318f53c9075dbd0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends 'base.html' %}
{% block content %}
{% if error_msg %}
{{ error_msg }}<br />
{% endif %}
<form action="" method="post">
{{form.as_p}}
<input type="submit" value="Submit">
</form>
{% endblock %}
|