From 62de99889f19aca449d40f438ee99ff20b9ed69d Mon Sep 17 00:00:00 2001 From: topilski Date: Fri, 14 Feb 2020 23:03:25 -0500 Subject: [PATCH] Vods templates --- app/templates/autofill/show_vods.html | 100 +++++++++++++++++++ app/templates/autofill/show_vods_anonim.html | 70 +++++++++++++ 2 files changed, 170 insertions(+) create mode 100644 app/templates/autofill/show_vods.html create mode 100644 app/templates/autofill/show_vods_anonim.html diff --git a/app/templates/autofill/show_vods.html b/app/templates/autofill/show_vods.html new file mode 100644 index 0000000..a57f389 --- /dev/null +++ b/app/templates/autofill/show_vods.html @@ -0,0 +1,100 @@ +{% extends 'layouts/layout_user.html' %} +{% from 'bootstrap/wtf.html' import form_field %} + +{% block title %} +M3U | {{ config['PUBLIC_CONFIG'].site.title }} +{% endblock %} +{% block styles %} + +{{super()}} +{% endblock %} +{% block content %} +
+
+

+ +
Version: {{ config['PUBLIC_CONFIG'].project.version }}
+

+
+
+
+
+
+

M3u

+
+ + +
+
+
+ + + + + + + + + + {% for line in m3u %} + + + + + + {% endfor %} + +
#NameActions
{{ loop.index }}{{ line.name }} + + Show + +
+
+
+ +
+
+
+ +{% endblock %} + +{% block scripts %} +{{ super() }} +{% endblock %} diff --git a/app/templates/autofill/show_vods_anonim.html b/app/templates/autofill/show_vods_anonim.html new file mode 100644 index 0000000..158d2d3 --- /dev/null +++ b/app/templates/autofill/show_vods_anonim.html @@ -0,0 +1,70 @@ +{% extends 'layouts/layout_user.html' %} +{% from 'bootstrap/wtf.html' import form_field %} + +{% block title %} +M3U | {{ config['PUBLIC_CONFIG'].site.title }} +{% endblock %} +{% block styles %} + +{{super()}} +{% endblock %} +{% block content %} +
+
+

+ +
Version: {{ config['PUBLIC_CONFIG'].project.version }}
+

+
+
+
+
+
+ + + + + + + + + + {% for line in m3u %} + + + + + + {% endfor %} + +
#NameActions
{{ loop.index }}{{ line.name }} + + Show + +
+
+
+
+
+
+{% endblock %} + +{% block scripts %} +{{ super() }} +{% endblock %}