{% for object in article_list %}
  1. {{ object.title|escape }}

    {% with object.authors.all as authors %} {% if authors %} by {% for author in authors %}{{ author.name_with_link|safe }}{% endfor %}
    {% endif %} {% endwith %} {{ object.pub_date|date:"F j, Y" }} {% for tag in object.tags.all %} {{ tag.title }} {% endfor %}
    {% with object.translation_set.all as translations %} {% if translations %} Translations: {% for translation in translations %}{{ translation.get_link|safe }}{% endfor %} {% endif %} {% endwith %}

    {{ object.summary|safe }}

    {% for comment in object.get_recent_comments %}
    {% if comment.webpage %} Comment by {{ comment.name }} {% else %} Comment by {{ comment.name }} {% endif %} on {{ comment.date|date:"F j, Y" }} {% if comment.parent %} Responding to {{ comment.parent.name }} {% endif %}
    {{ comment.html|safe }}
    {% endfor %}
  2. {% endfor %}