{% extends "lifeflow/lifeflow_base.html" %}
{% block title %}{{ object.title|escape }}{% endblock %}
{% block body %}
{{ 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 %}
{% with object.translated.all as translated %}
{% if translated %}
Translation of
{% for translation in translated %}{{ translation.original.title|safe }} in {{ translation.language }}{% endfor %}
{% endif %}
{% endwith %}
{% with object.series.all as series %}
{% if series %}
{% for article_series in series %}
{{ article_series.title|escape }}subscribe
{% for entry in article_series.in_order %}
{% endif %}
{% endblock %}
{% block extra_sidebar %}
{% with object.get_next_article as next %}
{% with object.get_previous_article as previous %}
{% if next or previous %}
{% if next %}