mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-09-06 17:29:39 +00:00
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.
This commit is contained in:
9
templates/live.njk
Normal file
9
templates/live.njk
Normal file
@ -0,0 +1,9 @@
|
||||
{% extends "base.njk" %}
|
||||
{% block content %}
|
||||
<h3>Currently live on {{ sitename }}</h3>
|
||||
{% for user in list%}
|
||||
<a href="/users/{{user.username}}">{{ user.username | capitalize}} | {{user.title}}</a></br></br>
|
||||
{% else %}
|
||||
No one is live!
|
||||
{% endfor %}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user