{% extends "shared/base.html" %} {% block title %} Comic List {% endblock %} {% block content %} {% with msg=msg %} {% include "components/alerts.html" %} {% endwith %}

Comics..

{% for comic in comics %} {% endfor %}
Title Publisher Completed Actions
{{comic.title}} {{comic.publisher.name}} {% with check=comic.completed %}{% include "components/check.html" %}{% endwith %} Edit Delete
Add Comic
{% endblock %}