{% for item in object_list %} {% ifequal item.content_type.name "post" %} {% get_free_comment_count for blog.post item.object_id as comment_count %}
  • {{ item.get_content_object.title }}.

    {{ item.pub_date|date:"l d F" }} / {{ item.pub_date|timesince }} / {% for tag in item.get_content_object.tags.all %} {{ tag.name }} /{% endfor %} {{ comment_count }} commentaire{{ comment_count|pluralize }}

  • {% endifequal %} {% ifequal item.content_type.name "photo" %} {% get_free_comment_count for photos.photo item.object_id as comment_count %}
  • {{ item.get_content_object.title }}.

    {{ item.pub_date|date:"l d F" }} / {{ item.pub_date|timesince }} / {{ comment_count }} commentaire{{ comment_count|pluralize }}

  • {% endifequal %} {% endfor %}