cleanup/restore

This commit is contained in:
2010-05-13 14:33:35 -07:00
parent f276b27885
commit 50a8b2f92e
42 changed files with 1929 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
<h3>Trees</h3>
<ul>
{% for tree in trees %}
<li><a href="{% url viewer.views.tree tree.name %}">{{ tree.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}