Top 5 Songs
<% if @top_artists_all_time.present? %>
<% @top_artists_all_time.each do |artist, count| %>
-
<%= artist %>
Plays: <%= count %>
<% end %>
<% else %>
No data
<% end %>
<% if @top_artists_year.present? %>
<% @top_artists_year.each do |artist, count| %>
-
<%= artist %>
Plays: <%= count %>
<% end %>
<% else %>
No data
<% end %>
<% if @top_artists_upcoming.present? %>
<% @top_artists_upcoming.each do |artist, count| %>
-
<%= artist %>
Plays: <%= count %>
<% end %>
<% else %>
No data
<% end %>