{% extends "default.html" %}
{% block title %}
{{SITE_NAME}} - Live
{% endblock %}
{% block content %}
{% if error %}
{{error}}
{% endif %}
{% if msg %}
{{msg}}
{% endif %}
Live
{% for id, link, thumb, name, title, viewers in live %}
|
{{name}} |
{{title}} |
{{viewers}} watching |
{% if v and v.admin_level >= PERMS['STREAMERS_MODERATION'] %}
|
{% endif %}
{% endfor %}
Offline
{% for id, link, thumb, name, minutes, actual, views in offline %}
|
{{name}} |
{{actual}} |
{{views}} views |
{% if v and v.admin_level >= PERMS['STREAMERS_MODERATION'] %}
|
{% endif %}
{% endfor %}
{% if v and v.admin_level >= PERMS['STREAMERS_MODERATION'] %}
{% endif %}
{% endblock %}