remove "load url from future"
[django-migdal.git] / migdal / templates / migdal / entry / submit.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block body %}
5
6 <h1>{% trans "Submit new story" %}</h1>
7
8 <p class="form-info">{% blocktrans %}
9 By submitting a story here, you agree to publish it under the terms of the
10 <a href='http://creativecommons.org/licenses/by-sa/3.0/'>Creative Commons Attribution-Share Alike</a>
11 free license.{% endblocktrans %}</p>
12
13 <p class="form-info">{% blocktrans %}Stories are moderated, so please be
14 patient, you'll be notified when it's published.{% endblocktrans %}</p>
15
16 <form class="submit-form" method="post" action="{% url 'migdal_submit' %}">
17 {% csrf_token %}
18 <table>
19     {{ submit_form.as_table }}
20     <tr><td></td><td><button type="submit">{% trans "Submit" %}</button></td></tr>
21 </table>
22 </form>
23
24
25 {% endblock %}