view sg101/templates/bandmap/add.html @ 820:9a0df7bd2409

Bandmap application work in progress. Model defined. Map is displaying. Initial display of add form.
author Brian Neal <bgneal@gmail.com>
date Sun, 21 Sep 2014 18:20:29 -0500
parents
children 71db8076dc3d
line wrap: on
line source
{% extends 'bandmap/bandmap_base.html' %}
{% block bandmap_content %}
<h3>Add Band</h3>
<p>
To add a band to our map, please fill out the form, below. The information will
be reviewed by our staff and will normally be published within 24 hours.
</p>
<p>The <em>location</em> field is important. Please enter an address and/or
city and state. For privacy reasons we don't recommend using an exact street
address unless it is a public place or landmark special to the band (such
a frequently played venue). Any text that you can use on Google Maps can be
used here.
</p>
<p>
Example locations:
</p>
<ul>
   <li>3rd and Main, Chicago, IL</li>
   <li>Tucson, Arizona</li>
   <li>The Purple Orchid, El Segundo, CA</li>
   <li>Rome, Italy</li>
   <li>5018EA, Tilburg, Netherlands</li>
</ul>

<form id="bandmap-add-form" action="." method="post">{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
   <td>&nbsp;</td>
   <td>
      <input type="submit" name="submit_button" value="Submit" />
   </td>
</tr>
</table>
</form>
{% endblock %}