{% if item_list %}
{% if add_all_button %}
{% endif %}
{% endif %}
{% if audio_list %}
Audio Tracks
Play |
Track |
{% if secret_key and playlist_add %}
Add |
{% endif %}
Title |
Album |
Artist |
Length |
{% if secret_key and playlist_rm %}
Remove |
{% endif %}
{% for audio in audio_list %}
{% include "audio_table_rows.html" with context %}
{% endfor %}
{% endif %}
{% if video_list %}
Video Tracks
Play |
Track |
{% if secret_key and playlist_add %}
Add |
{% endif %}
Title |
Album |
Artist |
Length |
{% if secret_key and playlist_rm %}
Remove |
{% endif %}
{% for video in video_list %}
{% include "video_table_rows.html" with context %}
{% endfor %}
{% endif %}