{% extends "base.html" %} {% block title %}Artist Detail{% endblock %} {% block content %}

{{ artist.name }}

Albums

{% include 'components/album_list.html' with albums=artist.albums.all %} {% endblock %}