1
{% extends "news/base_news.html" %}
4
{% block title %}Posts for {{ category.title }}{% endblock %}
5
{% block body_class %}{{ block.super }} category_detail{% endblock %}
6
{% block body_id %}category_{{ category.id }}{% endblock %}
9
{% block content_title %}
10
<h2>Posts for {{ category.title }}</h2>
16
<div class="post_list">
17
{% for post in object_list %}
19
<h3 class="title"><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h3>
20
<p class="date">{{ post.publish|date:"Y F d" }}</p>
21
<p class="tease">{{ post.tease }}</p>