fnp
/
prawokultury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
14906baa3ca36f7deec6f96180a8e1df0c599833
[prawokultury.git]
/
migdal
/
templates
/
migdal
/
entry
/
submit.html
1
{% extends "base.html" %}
2
{% load url from future %}
3
{% load i18n %}
4
5
{% block "body" %}
6
7
<h1>{% trans "Submit new story" %}</h1>
8
9
10
<form method="post" action="{% url 'migdal_submit' %}">
11
{% csrf_token %}
12
<table>
13
{{ submit_form.as_table }}
14
<tr><td><button type="submit">Go!</button></td></tr>
15
</table>
16
</form>
17
18
19
{% endblock %}