{% extends "shared/base.html" %} {% block title %} Issue Detail {% endblock %} {% block content %}

Issue Detail

{% if issue.volume %} {% endif %}
Issue Number {{issue.issue_number}}
Full Title {{issue.title}}
Published {{issue.published_on}}
Auf Lager {% with check=issue.in_stock %} {% include "components/check.html" %} {% endwith %}
Gelesen {% with check=issue.is_read %} {% include "components/check.html" %} {% endwith %}
Comic {{issue.comic.title}}
Volume {{issue.volume.name}}
Works {% for work in issue.get_artists() %}

{{work.name}}

    {% for artist in issue.get_artists()[work] %}
  • {{artist.name}}
  • {% endfor %}

{% endfor %}
Data Created {{issue.created_date}}
Data Modified {{issue.last_modified_date}}
Data Version {{issue.version}}
{% endblock %}