This repository has been archived on 2021-01-16. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-06-27 08:34:09 -05:00
|
|
|
{% extends "base.njk" %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>Manage Your VODs</h3>
|
|
|
|
<form action="/api/user/vods/delete" method="POST" target="responseFrame">
|
|
|
|
{% asyncEach vid in list%}
|
|
|
|
<input type="checkbox" id="{{vid.name}}" name="vlist[]" value="{{vid.name}}">
|
|
|
|
 <label for="{{vid.name}}">{{vid.name}}</label><p></p>
|
|
|
|
{% else %}
|
|
|
|
No recordings found!
|
|
|
|
{% endeach %}
|
2020-10-14 07:44:19 -05:00
|
|
|
</br><input type="submit" value="Delete">
|
2020-06-27 08:34:09 -05:00
|
|
|
</form>
|
|
|
|
<iframe name="responseFrame" border="0" frameborder="0" style="display: inline;"></iframe>
|
|
|
|
{% endblock %}
|