Downloads get run in their own threads which are queued. Downloads of single files as well as zips of playlists are possible. Interaction with db has shown no problems.
28 lines
661 B
HTML
28 lines
661 B
HTML
{%- extends "bootstrap/base.html" %}
|
|
{% import "bootstrap/fixes.html" as fixes %}
|
|
{% import "bootstrap/utils.html" as utils %}
|
|
|
|
{% block title %}
|
|
yt-dls
|
|
{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
{{ fixes.ie8() }}
|
|
{% endblock %}
|
|
|
|
{% block navbar %}
|
|
{{ nav.frontend_top.render() }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{%- with messages = get_flashed_messages(with_categories=True) %}
|
|
{%- if messages %}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
{{utils.flashed_messages(messages)}}
|
|
</div>
|
|
</div>
|
|
{%- endif %}
|
|
{%- endwith %}
|
|
{% endblock %} |