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 %}
+
+
+
+
+
+
+
+
+
+
+ # |
+ Name |
+ Actions |
+
+
+
+ {% for line in m3u %}
+
+ {{ loop.index }} |
+ {{ line.name }} |
+
+
+ Show
+
+ |
+
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+{% 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 %}
+
+
+
+
+
+
+
+
+
+ # |
+ Name |
+ Actions |
+
+
+
+ {% for line in m3u %}
+
+ {{ loop.index }} |
+ {{ line.name }} |
+
+
+ Show
+
+ |
+
+ {% endfor %}
+
+
+
+
+
+
+
+{% endblock %}
+
+{% block scripts %}
+{{ super() }}
+{% endblock %}