comparison gpp/templates/weblinks/link_summary.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 7e8d2dda99e3
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'weblinks/base.html' %}
2 {% block title %}Web Links: {{ title }}{% endblock %}
3 {% block weblinks_content %}
4 <h3>{{ title }}</h3>
5 {% if links %}
6 <dl>
7 {% for link in links %}
8 {% include 'weblinks/link.html' %}
9 {% endfor %}
10 </dl>
11 {% endif %}
12 {% endblock %}