satyr/templates/vods.njk
knotteye f9e4a7a5c6 I don't even know.
Filled out API for user management
Proper escaping of user input for SQL queries (stream keys aren't user input)
Filled out frontend with profile management, vods, etc.
I don't remember there's probably more, fuck.
2019-10-05 14:34:57 -05:00

9 lines
238 B
Plaintext

{% extends "base.njk" %}
{% block content %}
<h3>{{ user }}'s VODs</h3>
{% asyncEach vid in list%}
<a href="/live/{{ user }}/{{ vid.name }}">{{ vid.name }}</a></br></br>
{% else %}
No recordings found!
{% endeach %}
{% endblock %}