{% extends "shared/base.html" %} {% block title %} WorkType Detail {% endblock %} {% block content %}
WorkType Name {{worktype.name}}
Works {% for comic in worktype.get_artists() %}

{{comic}}:

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

{% endfor %}
ID {{worktype.id}}
Data Created {{worktype.created_date}}
Data Modified {{worktype.last_modified_date}}
Data Version {{worktype.version}}
Back to list Edit Delete
{% endblock %}