1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-09 19:52:16 +00:00

Fixed playlist related errors

This commit is contained in:
spl0k 2017-11-20 21:31:10 +01:00
parent be47a259a8
commit 1488f29e9f
3 changed files with 3 additions and 4 deletions

View File

@ -76,7 +76,6 @@ class UserManager:
store.find(RatingTrack, RatingTrack.user_id == user.id).remove()
store.find(ChatMessage, ChatMessage.user_id == user.id).remove()
for playlist in store.find(Playlist, Playlist.user_id == user.id):
playlist.tracks.clear()
store.remove(playlist)
store.remove(user)

View File

@ -39,7 +39,7 @@
<tr><th>Artist</th><th>Title</th><th>Album</th><th>Length</th></tr>
</thead>
<tbody>
{% for t in playlist.tracks %}
{% for t in playlist.get_tracks() %}
<tr><td>{{ t.album.artist.name }}</td><td>{{ t.title }}</td><td>{{ t.album.name }}</td><td>{{ t.duration_str() }}</td></tr>
{% endfor %}
</tbody>

View File

@ -27,7 +27,7 @@
{% for p in mine %}
<tr>
<td><a href="{{ url_for('playlist_details', uid = p.id) }}">{{ p.name }}</a></td>
<td>{{ p.tracks.count() }}</td>
<td>{{ p.get_tracks()|length }}</td>
<td>{% if p.public %}<span class="glyphicon glyphicon-check"
aria-label="Public playlist"></span>{% else %}<span
class="glyphicon glyphicon-unchecked"
@ -52,7 +52,7 @@
<tr>
<td><a href="{{ url_for('playlist_details', uid = p.id) }}">{{ p.name }}</a></td>
<td>{{ p.user.name }}</td>
<td>{{ p.tracks.count() }}</td>
<td>{{ p.get_tracks()|length }}</td>
</tr>
{% endfor %}
</tbody>