{% 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 as object_list %} {% paginate using "pagination/pagination_mod.html" %}
{% for post in object_list %} {% get_comment_count for post as ccount %} {% endfor %}
Title Posted at Comments
{{ post.title }} {{ post.publish|custom_date:user }} {{ ccount }}
{% endblock %}