gremmie@1: {% extends 'news/base.html' %} gremmie@1: {% load tagging_tags %} gremmie@1: {% load comment_tags %} bgneal@6: {% load script_tags %} gremmie@1: {% block title %}News: {{ story.title }}{% endblock %} gremmie@1: {% block news_css %} gremmie@1: gremmie@1: {% endblock %} gremmie@1: {% block custom_js %} bgneal@6: {% if story.can_comment_on %} bgneal@6: {% script_tags "jquery" %} bgneal@6: {% script_tags "markitup" %} gremmie@1: bgneal@6: {% endif %} gremmie@1: {% endblock %} gremmie@1: {% block news_content %} gremmie@1:
gremmie@1: bgneal@5: {% if user.is_authenticated %} gremmie@1: bgneal@5: {% endif %} gremmie@1:
gremmie@1:This story has {{ comment_count }} comment{{ comment_count|pluralize }}.
gremmie@1:Leave a comment?
gremmie@1: {% render_comment_form for story %} gremmie@1: {% else %} gremmie@1:Comments are closed for this story. If you'd like to share your thoughts on this story gremmie@1: with the site staff, you can contact us directly.
gremmie@1: {% endif %} gremmie@1: {% endblock %}