{% extends "layouts/app.twig" %} {% block content %}
Back to Music
{% if album.cover_url %} {{ album.title }} {% else %}
{% endif %}

{{ album.title }}

{% if artist %}

{{ artist.name }}

{% else %}

{{ album.artist_name }}

{% endif %}
{% if album.is_favorite %}
Favorite
{% endif %}
{% if album.release_date %}
Release Date
{{ album.release_date|date('M j, Y') }}
{% endif %} {% if album.track_count %}
Tracks
{{ album.track_count }}
{% endif %} {% if album.total_duration_seconds %}
Duration
{{ (album.total_duration_seconds / 60)|round(0) }} min
{% endif %} {% if album.genre %}
Genre
{{ album.genre }}
{% endif %}
Source: {{ album.source_name }}
{% if tracks %}

Tracks

{% for track in tracks %}
{{ track.track_number }}
{{ track.title }}
{% if track.artist_name and track.artist_name != album.artist_name %}
{{ track.artist_name }}
{% endif %}
{% if track.duration_seconds %} {{ '%02d'|format((track.duration_seconds / 60)|round(0)) }}:{{ '%02d'|format(track.duration_seconds % 60) }} {% endif %}
{% endfor %}
{% endif %} {% if metadata %}

Additional Information

{% if metadata.label %}
Label
{{ metadata.label }}
{% endif %} {% if metadata.popularity %}
Popularity
{{ metadata.popularity }}/100
{% endif %} {% if metadata.spotify_id %}
Spotify ID
{{ metadata.spotify_id }}
{% endif %} {% if metadata.musicbrainz_id %}
MusicBrainz ID
{{ metadata.musicbrainz_id }}
{% endif %}
{% endif %}
{% endblock %}