A self hosted livestreaming server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 
satyr/templates/managevods.njk

14 lines
527 B

{% 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}}">
&nbsp<label for="{{vid.name}}">{{vid.name}}</label><p></p>
{% else %}
No recordings found!
{% endeach %}
</br><input type="submit" value="Delete">
</form>
<iframe name="responseFrame" border="0" frameborder="0" style="display: inline;"></iframe>
{% endblock %}