{% extends "base.html" %} {% block title %}Albums{% endblock %} {% block body %} {% block top %}{% endblock %}
{% if artist %} {% endif %} {% if not artist %} {% endif %} {% for album in albums %} {% if not artist %} {% endif %} {% endfor %}
AlbumArtistReleased
{{album.name}} {{album.artist_id}} {% if album.released %}{{album.released}}{% endif %}
{% block bottom %}{% endblock %} {% endblock %}