Add nice frontend, Add song search, add enqueueing

This commit is contained in:
2019-05-22 03:04:54 +02:00
parent 65287d299b
commit ab1db95d06
8 changed files with 260 additions and 39 deletions

26
templates/main.html Normal file
View File

@ -0,0 +1,26 @@
{% extends 'base.html' %}
{% block title %}Home{% endblock %}
{% block content %}
<table class="table">
<tr>
<th scope="col">Name</th>
<th scope="col">Song</th>
<th scope="col">Künstler</th>
</tr>
{% for entry in list: %}
<tr>
<td>
{{ entry[0] }}
</td>
<td>
{{ entry[1] }}
</td>
<td>
{{ entry[2] }}
</td>
</tr>
{% endfor %}
</table>
{% endblock %}