12 lines
212 B
HTML
12 lines
212 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form method="post" action=".">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" value="{% trans 'Submit' %}" />
|
|
</form>
|
|
{% endblock %}
|