Start adding views
[tickle] / tickle / templates / tickle / area_list.html
1 <html>
2   <head></head>
3   <body>
4     <h1>All Areas</h1>
5     <ul>
6       {% for area in area_list %}
7         {% include 'tickle/area_list_item.html' %}
8       {% endfor %}
9     </ul>
10   </body>
11 </html>