{% extends "aggregator/base.html" %} {% load comments %} {% block head %} {% endblock %} {% block content %} {% include "aggregator/post_content.html" with post=object %} {% get_comment_count for object as comment_count %} {% if comment_count > 0 %} {% render_comment_list for object %} {% endif %} {% render_comment_form for object %}
{% with next=object.get_next_by_updated previous=object.get_previous_by_updated %} {% if previous %} {% endif %} {% if next %} {% endif %} {% endwith %}
{% endblock %}