view gpp/templates/news/story_summary.html @ 271:4746df47a538

Follow on to last rev (r292) for #126. Missed updating a shoutbox template. Also the repoze.timeago package uses UTC time by default. Change this to local time for now until we decide to switch over to UTC for everything.
author Brian Neal <bgneal@gmail.com>
date Sun, 26 Sep 2010 17:42:00 +0000
parents 1246a4f1ab4f
children daa2916f5b34
line wrap: on
line source
{% load tagging_tags %}
{% load comment_tags %}
{% get_comment_count for story as comment_count %}
<div class="news-story-container">
{% if on_home %}
<h3><a href="{{ story.get_absolute_url }}">{{ story.title }}</a></h3>
{% else %}
<h4><a href="{{ story.get_absolute_url }}">{{ story.title }}</a></h4>
{% endif %}
<div class="news-details">
   Submitted by {{ story.submitter.username }} on {{ story.date_submitted|date:"F d, Y" }}.
</div>
<a href="{% url news-category slug=story.category.slug %}">
<img src="{{ story.category.icon.url }}" alt="{{ story.category.title }}" title="{{ story.category.title }}" 
   class="news-icon" /></a>
<div class="news-content">
   {{ story.short_text|safe }}
</div>
{% if story.long_text %}
<p>
<img src="{{ MEDIA_URL }}icons/bullet_go.png" alt="Read More" />
<a href="{{ story.get_absolute_url }}">There is more to this story, continue reading ...</a>
</p>
{% endif %}
<hr />
<p>
Category: <a href="{% url news-category slug=story.category.slug %}">{{ story.category.title }}</a>
<img src="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" />
<a href="{{ story.get_absolute_url }}">{{ comment_count }} comment{{ comment_count|pluralize }}</a>
<a href="{{ story.get_absolute_url }}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Permalink" title="Permalink" /></a>
{% if user.is_authenticated %}
<a href="{% url news.views.email_story story.id %}"><img src="{{ MEDIA_URL }}icons/email_go.png"
   alt="Send this story to a friend" title="Send this story to a friend" /></a>
{% endif %}
</p>
{% tags_for_object story as story_tags %}
{% if story_tags %}
<div class="news-tags">
   <img src="{{ MEDIA_URL }}icons/tag_blue.png" alt="Tags" title="Tags" /> Tags:
   <ul>
      {% for tag in story_tags %}
         <li><a href="{% url news-tag_page tag_name=tag %}">{{ tag }}</a></li>
      {% endfor %}
   </ul>
</div>
{% endif %}
</div>