{% extends "shared/base.html" %} {% block title %} Comic Detail {% endblock %} {% block content %}
{% if comic.volumes|length > 0 %} {% endif %}
Comic Title {{comic.title}}
Publisher {{comic.publisher.name}}
Completed {% with check=comic.completed %} {% include "components/check.html" %} {% endwith %}
Link {{comic.weblink}}
Works {% for work in comic.get_artists() %}

{{work.name}}

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

{% endfor %}
Volumes
Issues
Data Created {{comic.created_date}}
Data Modified {{comic.last_modified_date}}
Data Version {{comic.version}}
Back to list Edit Delete
{% endblock %}