removed iframes and templatized

This commit is contained in:
2010-04-13 14:48:16 -07:00
parent 9e8961abf1
commit 74be39a565
15 changed files with 185 additions and 151 deletions

View File

@@ -1,7 +1,10 @@
<h1>Trees</h1>
{% 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 %}