{%- extends "base.html" %} {% block content %} {{ super() }}
{% if playlists %}
{% for playlist in playlists %} {% endfor %}
Playlists Update
{{ playlist['name'] }} Start
{% endif %}



{% if videos %}
{% for video in videos %} {% if 'mp3' in video['ext'] %} {% endif %} {% if 'mp4' in video['ext'] %} {% endif %} {% endfor %}
Titles not in any playlist Download Delete
{{ video['name'] }} Download
{{ video['name'] }} Download
{% endif %}
{%- endblock %}