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

Artist Detail

Artist Name {{artist.name}}
Link {{artist.weblink}}
Works {% for work in artist.get_comics() %}

{{work}}:

    {% for comic in artist.get_comics()[work] %}
  • {{comic.title}}
  • {% endfor %}

{% endfor %}
Data Created {{artist.created_date}}
Data Modified {{artist.last_modified_date}}
Back to list Edit Delete
{% endblock %}