Add top artist and top albums of all time
Executed by Claude
This commit is contained in:
@@ -76,7 +76,7 @@
|
||||
<.refresh_lastfm_feed_button />
|
||||
</div>
|
||||
|
||||
<div class="mt-5 grid grid-cols-1 lg:grid-cols-3 gap-5">
|
||||
<div class="mt-5 grid grid-cols-1 lg:grid-cols-4 gap-5">
|
||||
<.top_albums_by_period
|
||||
albums={@top_albums.last_30_days}
|
||||
title={gettext("Last 30 days")}
|
||||
@@ -95,6 +95,12 @@
|
||||
collected_releases={@top_albums.collected_releases}
|
||||
wishlisted_releases={@top_albums.wishlisted_releases}
|
||||
/>
|
||||
<.top_albums_by_period
|
||||
albums={@top_albums.all_time}
|
||||
title={gettext("All time")}
|
||||
collected_releases={@top_albums.collected_releases}
|
||||
wishlisted_releases={@top_albums.wishlisted_releases}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -106,10 +112,11 @@
|
||||
<.refresh_lastfm_feed_button />
|
||||
</div>
|
||||
|
||||
<div class="mt-5 grid grid-cols-1 lg:grid-cols-3 gap-5">
|
||||
<div class="mt-5 grid grid-cols-1 lg:grid-cols-4 gap-5">
|
||||
<.top_artists_by_period artists={@top_artists.last_30_days} title={gettext("Last 30 days")} />
|
||||
<.top_artists_by_period artists={@top_artists.last_90_days} title={gettext("Last 90 days")} />
|
||||
<.top_artists_by_period artists={@top_artists.last_365_days} title={gettext("Last year")} />
|
||||
<.top_artists_by_period artists={@top_artists.all_time} title={gettext("All time")} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user