CRUD Albums + Spotify API requests into DB.
All checks were successful
CI - Build Tonehaus Docker image / tonehaus-ci-build (push) Successful in 2m17s

This commit is contained in:
2025-11-20 19:53:45 +00:00
parent cd13f1478a
commit cd04fa5212
26 changed files with 6180 additions and 66 deletions

View File

@@ -14,6 +14,21 @@
<p class="text-secondary mb-2">Released {{ album.release_date }}{{ album.total_tracks }} tracks</p>
<p class="mb-2"><strong>User score:</strong> {{ avg }}/10 ({{ count }})</p>
<a class="btn btn-outline-success btn-sm" href="{{ album.external_urls.spotify }}" target="_blank" rel="noopener">Open in Spotify</a>
{% if album.source is defined and album.source == 'user' %}
<span class="badge text-bg-primary ms-2">User album</span>
{% endif %}
{% if app.user and (isSaved is defined) and (not isSaved) %}
<form class="d-inline ms-2" method="post" action="{{ path('album_save', {id: albumId}) }}">
<input type="hidden" name="_token" value="{{ csrf_token('save-album-' ~ albumId) }}">
<button class="btn btn-primary btn-sm" type="submit">Save album</button>
</form>
{% endif %}
{% if is_granted('ROLE_ADMIN') %}
<form class="d-inline ms-2" method="post" action="{{ path('album_delete', {id: albumId}) }}" onsubmit="return confirm('Delete this album from the database?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete-album-' ~ albumId) }}">
<button class="btn btn-outline-danger btn-sm" type="submit">Delete</button>
</form>
{% endif %}
</div>
</div>
</div>