9 lines
223 B
HTML
9 lines
223 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Artist Detail{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ artist.name }}</h1>
|
|
<h2>Albums</h2>
|
|
{% include 'components/album_list.html' with albums=artist.albums.all %}
|
|
{% endblock %} |