mirror of
https://github.com/Damillora/Altessimo
synced 2024-11-22 21:57:32 +00:00
18 lines
460 B
HTML
18 lines
460 B
HTML
<table class="table">
|
|
<thead>
|
|
<th class="col-4">Title</th>
|
|
<th>Artist</th>
|
|
<th>Origin</th>
|
|
<th class="col-2">Link</th>
|
|
</thead>
|
|
<tbody>
|
|
{% for song in outside_songs %}
|
|
<tr>
|
|
<td>{{ song.title }}</td>
|
|
<td>{{ song.artist }}</td>
|
|
<td>{{ song.origin }}</td>
|
|
<td><a href="{{ song.url }}">Open</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |