{% extends 'music_nation/base.html' %} {%block title%} {%endblock%} {%block content%}
{% for album in albums %}

{{album.album_name}}

{% if album.album_artist == user %} Delete {% endif %} {% for song in album.songs.all %}
  • {{song.song_name}}
  • {% endfor %}
    {% endfor %}
    {%endblock%}