{% extends "base.html" %} {% block content %}
{% include 'navbar.html' %}
New Event
{% if eventName and not codeFailed %}

Viewing event '{{eventName}}'

{% if players|length == 0 %}
No player data found, refresh to check again
{% endif %}
{% else %}
{% if codeFailed %} {% endif %}
{% endif %}
{% for player in players %}
Player: {{player}}
{% endfor %}
Running a solo stream? Try the broadcast views!
{% include 'settings.html' %}
{% include 'scripts.html' %} {% endblock %}