2018-11-06 22:11:35 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block pagetitle %}
|
|
|
|
File più ascoltati {% if discord %}di {{ discord }}{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1>
|
|
|
|
File più ascoltati {% if discord %}di {{ discord }}{% endif %}
|
|
|
|
</h1>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>File</th>
|
|
|
|
<th>Conteggio</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for song in songs %}
|
|
|
|
<tr>
|
2018-11-18 22:11:38 +00:00
|
|
|
<td><a href="https://www.youtube.com/results?sp=EgIQAQ%253D%253D&search_query={{ song[0] }}">{{ song[0] }}</a></td>
|
2018-11-06 22:11:35 +00:00
|
|
|
<td>{{ song[1] }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|