Remove unnecessary extra template
This commit is contained in:
parent
fcf327e429
commit
8fa27e8c3c
2 changed files with 3 additions and 4 deletions
|
@ -1,3 +0,0 @@
|
|||
{% for track in tracks %}
|
||||
{% include "spotify/spotify-item.html" with track=track.track %}
|
||||
{% endfor %}
|
|
@ -14,7 +14,9 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% include "spotify/spotify-items.html" with tracks=playlist.tracks %}
|
||||
{% for track in playlist.tracks %}
|
||||
{% include "spotify/spotify-item.html" with track=track.track %}
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue