# HG changeset patch
# User Brian Neal
{{ category.description }}
+
diff -r 893b6d462cf9 -r 2baadae33f2e gpp/templates/news/index.html
--- a/gpp/templates/news/index.html Wed Apr 07 01:59:09 2010 +0000
+++ b/gpp/templates/news/index.html Sat Apr 10 04:32:24 2010 +0000
@@ -1,5 +1,4 @@
{% extends 'news/base.html' %}
-{% load tagging_tags %}
{% block title %}News: {{ title }}{% endblock %}
{% block news_css %}
@@ -15,7 +14,6 @@
{% if page.object_list %}
{% for story in page.object_list %}
- {% tags_for_object story as story_tags %}
{% include 'news/story_summary.html' %}
{% endfor %}
diff -r 893b6d462cf9 -r 2baadae33f2e gpp/templates/news/story.html
--- a/gpp/templates/news/story.html Wed Apr 07 01:59:09 2010 +0000
+++ b/gpp/templates/news/story.html Sat Apr 10 04:32:24 2010 +0000
@@ -19,7 +19,7 @@
- Category: {{ story.category.title }}
+ Category: {{ story.category.title }}
{{ story.short_text|safe }}
@@ -29,7 +29,7 @@
{% if story_tags %}
{% if user.is_authenticated %}
@@ -41,7 +41,7 @@
Tags:
{% for tag in story_tags %}
-
-Category: {{ story.category.title }}
+Category: {{ story.category.title }}
{{ comment_count }} comment{{ comment_count|pluralize }}
@@ -32,12 +32,12 @@
alt="Send this story to a friend" title="Send this story to a friend" />
{% endif %}
We have {{ total_links }} links in {{ categories.count }} categories.
{{ category.description }}