a2a3be0529
- Fix Quarkus BOM groupId (io.quarkus:quarkus-bom) and version (3.37.1)
- Fix artifact names: quarkus-resteasy, quarkus-resteasy-qute, quarkus-resteasy-client
- Add UserAgentFilter for MusicBrainz API compliance
- Fix @RestClient qualifier on MB client injection points
- Fix Qute template section names: {#insert}{/insert}, {#else} not {:else}
- Fix template injection with @Location annotation
- Remove unused imports
- Fix RSS feed builder to use Synd API
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
{#if entries.isEmpty()}
|
|
<div class="card bg-base-100 shadow-xl p-8 text-center">
|
|
<p class="text-lg text-base-content/60">No releases found</p>
|
|
<p class="text-sm text-base-content/40 mt-2">Add artists to your collection to see their releases here</p>
|
|
</div>
|
|
{#else}
|
|
<div class="overflow-x-auto">
|
|
<table class="table table-zebra">
|
|
<thead>
|
|
<tr>
|
|
<th>Artist</th>
|
|
<th>Release</th>
|
|
<th>Type</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{#for entry in entries}
|
|
<tr>
|
|
<td class="font-medium">{entry.artistName}</td>
|
|
<td>
|
|
<a href="https://musicbrainz.org/release-group/{entry.mbid}"
|
|
target="_blank" rel="noopener noreferrer"
|
|
class="link link-hover">
|
|
{entry.title}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<span class="badge badge-outline badge-sm">{entry.primaryType}</span>
|
|
</td>
|
|
<td class="text-sm text-base-content/60">{entry.firstReleaseDate}</td>
|
|
</tr>
|
|
{/for}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{/if}
|