{% extends "news/base_news.html" %} {% load custom_date %} {% block title %}Post archive for {{ month|date:"F Y" }}{% endblock %} {% block body_class %}{{ block.super }} post_archive_month{% endblock %} {% block content_title %}

Post archive for {{ month|date:"F Y" }}

{% endblock %} {% block content %}
{% for post in object_list %}

{{ post.title }}

{{ post.publish|custom_date:user }}

{{ post.tease }}

{% endfor %}
{% endblock %}