{% extends 'base.html' %} {% block title %}{{ _('Spotify mappings') }} - CritiqueBrainz{% endblock %} {% block content %}
{{ _('No mappings') }}
{% else %}| {# Cover art #} | {{ _('Type') }} | {{ _('ID') }} | {{ _('Album') }} | {{ _('Artist') }} | {{ _('Release date') }} | |
|---|---|---|---|---|---|---|
|
|
{{ album.type }} | {{ album.id }} | {{ album.name }} | {# Generating a list of artists #} {% set artists = [] %} {% for artist in album.artists %} {% do artists.append(artist.name) %} {% endfor %} {{ artists|join(', ') }} | {{ album.release_date }} | {{ _('Report as incorrect') }} |