{% comment %} Given an article that belongs to a series, display a list of all the articles in the series, linking to all but the current article. {% endcomment %} {% with object.series as series %} {% if series %}

Part of the Series: {{ series.name }}

    {% for article in series.article_set.all %} {% if article != object %}
  1. {{ article.title }}
  2. {% else %}
  3. {{ article.title }}
  4. {% endif %} {% endfor %}
{% endif %} {% endwith %}