{% extends "layout.html" %} {% block title %}Musics{% endblock %} {% block body %} {% for m in musics: %} {% endfor %}
Artist Genre Album Track Title Rating Keywords Folder Duration Size YouTube Actions
{{ m.artist }} {{ m.genre }} {{ m.album }} {{ m.number }} {{ m.title }} {{ m.rating }} {{ m.keywords}} {{ m.folder }} {{ seconds_to_human(m.duration) }} {{ bytes_to_human(m.size) }} {%if m.youtube != "not found" %}{{ m.youtube }}{%else%}Not found{% endif %} play / download / show
{% endblock %}