{% 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 %}