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