Mercurial > public > sg101
view gpp/templates/weblinks/link_summary.html @ 230:5ee9422ce83c
Fix lack of trailing slash on the individual forum RSS feed links. For some reason this was causing a bizarre middleware error 'request object has not attribute session'.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 13 Jul 2010 03:51:37 +0000 |
parents | dbd703f7d63a |
children | 7e8d2dda99e3 |
line wrap: on
line source
{% extends 'weblinks/base.html' %} {% block title %}Web Links: {{ title }}{% endblock %} {% block weblinks_content %} <h3>{{ title }}</h3> {% if links %} <dl> {% for link in links %} {% include 'weblinks/link.html' %} {% endfor %} </dl> {% endif %} {% endblock %}