view gpp/templates/news/current_news.html @ 160:2eb3984ccb15

Implement #45, add a who's online feature for the forums. Created middleware that caches usernames and guest session ids in the cache. Added a tag that displays this info.
author Brian Neal <bgneal@gmail.com>
date Tue, 22 Dec 2009 02:08:05 +0000
parents 07da6967fc40
children da46e77cd804
line wrap: on
line source
{% load tagging_tags %}
{% if stories %}
<h2>Current News Stories</h2>
{% for story in stories %}
   {% tags_for_object story as story_tags %}
   {% include 'news/story_summary.html' %}
{% endfor %}
<hr />
<p>For more news stories, check out our <a href="{% url news-index_page page=1 %}">news archive</a>.</p>
{% endif %}