Skip to content

Commit

Permalink
Add a table to the data
Browse files Browse the repository at this point in the history
  • Loading branch information
spudooli committed Apr 17, 2024
1 parent 7779721 commit 14fd1be
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions spudoolicom/templates/music.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,13 @@ <h1 class="title-un">{% block title %}I Listen to Music - Projects{% endblock %}
<div class="col-md-9">
<div>
<div class="counter-title">Top 30 Artists</div>
<p>

<table class="table table-sm">
{% for thing in top30artists %}
<ul class="too-much-queen-list">
<li>{{ "{:,}".format(thing.playcount) }} - {{ thing.artist }}</li>
</ul>
{% endfor %}</p>
<tr>
<td>{{ "{:,}".format(thing.playcount) }}</td><td>{{ thing.artist }}</td>
</tr>
{% endfor %}</table>
</p>
</div>
</div>
Expand Down

0 comments on commit 14fd1be

Please sign in to comment.