Fix #47: Delete the correct item in playlist [wi]

Recording information, when an item was added to the playlist
makes it possible to remove the correct item in playlist, in case
duplicate items in playlist exists.
This commit is contained in:
Franz A. Steffek
2018-05-30 10:54:28 +02:00
parent 7bcfdfcbe9
commit 1e28ceded5
2 changed files with 4 additions and 3 deletions

View File

@ -84,7 +84,7 @@
<ul>
{% for m in playlist %}
<li>{{ m }}
<li>{{ m[0], m[1] }}
<form method="post"><input type="text" value="{{ m }}" name="delete_music" hidden><input type="submit" value="X"></form>
</li>
{% endfor %}