chore: table styles + album table order

This commit is contained in:
Cory Dransfeldt 2024-07-25 17:38:49 -07:00
parent 3f097c927f
commit 8ff7947017
No known key found for this signature in database
6 changed files with 39 additions and 18 deletions

View file

@ -64,15 +64,15 @@ schema: artist
{%- endif -%}
<table>
<tr>
<th>Year</th>
<th>Title</th>
<th>Album</th>
<th>Plays</th>
<th>Year</th>
</tr>
{% for album in artist.albums %}
<tr>
<td>{{ album.release_year }}</td>
<td>{{ album.name }}</td>
<td>{{ album.total_plays }}</td>
<td>{{ album.release_year }}</td>
</tr>
{% endfor %}
</table>