add index.html

This commit is contained in:
Sanj 2011-11-09 21:19:17 +05:30
parent 630d8fdcd7
commit b4f1b743c7

View File

@ -0,0 +1,10 @@
<p>
<a href="/new_item/">Create New</a>
</p>
Existing items:
<ul>
{% for i in items %}
<li><a href="/edit_item/?id={{ i.id }}">{{ i.title }}</a></li>
{% endfor %}
</ul>