Clean up repo changes; mostly fixes
[frozenviper.git] / viper / templates / listing / submit.html
blobe05eda23964ce11839c643d49438397e8a634adc
1 {% extends "layout/single_column.html" %}
3 {% block main_nav %}
4 {% include "listing/nav/main.html" %}
5 {% endblock %}
7 {% block sub_nav %}
8 {% include "listing/nav/submit.html" %}
9 {% endblock %}
11 {% block main_content %}
12 <dl>
13 <form method="post" action="">{% csrf_token %}
14 <dt><label for="id_title">{{ form.title.label }}</label></dt>
15 <dd>{{ form.title }}</dd>
16 <dt><label for="id_description">{{ form.description.label }}</label></dt>
17 <dd>{{ form.description }}</dd>
18 <dt><label for="id_available">{{ form.available.label }}</label></dt>
19 <dd>{{ form.available }}</dd>
20 <dt><label for="id_location">{{ form.location.label }}</label></dt>
21 <dd>{{ form.location }}</dd>
22 <dt><label for="id_city">{{ form.city.label }}</label></dt>
23 <dd>{{ form.city }}</dd>
24 </p>
25 <input type="submit" />
26 </form>
27 </dl>
28 {% endblock %}