14 lines
369 B
HTML
14 lines
369 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Album Detail{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ album.name }}</h1>
|
|
<p>Artist: {{ album.artist }}</p>
|
|
<p>Release Date: {{ album.release_date }}</p>
|
|
<h2>Tracks</h2>
|
|
<div class="container">
|
|
{% include 'components/track_list.html' with tracks=album.tracks.all %}
|
|
{% include 'components/player.html' %}
|
|
</div
|
|
{% endblock %} |