Remove unnecessary extra template

This commit is contained in:
Jake Howard 2022-08-18 14:17:29 +01:00
parent fcf327e429
commit 8fa27e8c3c
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 3 additions and 4 deletions

View File

@ -1,3 +0,0 @@
{% for track in tracks %}
{% include "spotify/spotify-item.html" with track=track.track %}
{% endfor %}

View File

@ -14,7 +14,9 @@
</tr> </tr>
</thead> </thead>
<tbody> <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> </tbody>
</table> </table>
</section> </section>