{% import "bootstrap/utils.html" as utils %} {% extends "base.html" %} {% block title %}Library Authors{% endblock %} {% block body %}

{{ utils.flashed_messages() }}

Library Authors

{% if authors %}
{% for author in authors %} {% endfor %}
Name Edit Delete
{{ author.name }} Edit Delete
{% else %}

No artists have been added.


{% endif %} Add Author
{% endblock %}