{% extends "news/base_news.html" %} {% load pagination_tags %} {% load threadedcommentstags %} {% load custom_date %} {% block title %} Category: {{ cur_category }} - {{ block.super }}{% endblock %} {% block content %}

Posts for Category: {{ cur_category }}


{% autopaginate post_list 20 %} {% paginate %}
{% for post in post_list %} {% get_comment_count for post as ccount %} {% endfor %}
Title Posted at Comments
{{ post.title }} {{ post.publish|custom_date:user }} {{ ccount }}
{% endblock %}