mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-05-08 05:29:24 +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
242 B
Plaintext
9 lines
242 B
Plaintext
{% extends "base.njk" %}
|
|
{% block content %}
|
|
<h3>Streaming on {{ sitename }}</h3>
|
|
{% asyncEach user in list%}
|
|
<a href="/users/{{user.username}}">{{ user.username }}</a></br></br>
|
|
{% else %}
|
|
No users found!
|
|
{% endeach %}
|
|
{% endblock %} |