{% extends 'base.html.twig' %} {% block title %}{{ album.name }} — Reviews{% endblock %} {% block body %}
Released {{ release_text }} • {{ track_text }}
{% if album.source is defined and album.source == 'user' %}
Added{{ albumOwner ? ' by ' ~ (albumOwner.displayName ?? albumOwner.userIdentifier) : '' }}
{% if albumCreatedAt %}on {{ albumCreatedAt|date('Y-m-d') }}{% endif %}
{% endif %}
User score: {{ avg }}/10 ({{ count }})
{% if album.external_urls.spotify %} Open in Spotify {% endif %} {% if album.source is defined and album.source == 'user' %} User album {% endif %} {% if app.user and (album.source is not defined or album.source != 'user') and (isSaved is defined) and (not isSaved) %} {% endif %} {% if allowedEdit %} Edit {% endif %} {% if allowedDelete %} {% endif %}| # | Title | Duration |
|---|---|---|
| {{ track.disc > 1 ? track.disc ~ '.' : '' }}{{ track.track }} |
{{ track.name }}
{% if track.preview_url %}
►
{% endif %}
|
{{ track.duration_label }} |
{{ r.content|u.truncate(300, '…', false) }}
Read moreNo reviews yet for this album.
{% endfor %}