{% extends "base.html" %} {% block content %}
{% if artist is not none %}
Create New Album

Artist Name: {{ artist.name }}

{{ form.csrf_token }} {{ render_field(form.title, placeholder=form.title.label.text) }}
{% endif %} {% for album in albums %} {% endfor %}
List of Albums
Album Name
{{ album.title }}
{% endblock %}