mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-04-22 16:30:58 +00:00
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.
9 lines
238 B
Plaintext
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 %} |