{% extends "core/frontend/index.jinja" %} {% block content %}

System Management

{% if sesh.permissions >= 2 %}

User Search

OR
OR

{% endif %} {% if sesh.permissions >= 4 %}

Arcade Search

OR
OR
OR

Machine Search

OR
OR

{% endif %}
{% if sesh.permissions >= 2 %}
{% for usr in usrlist %}
{{ usr.id }} | {{ usr.username if usr.username != None else "No Name Set"}}
{% endfor %}
{% endif %} {% if sesh.permissions >= 4 %}
{% for ac in aclist %}
{{ ac.id }} | {{ ac.name if ac.name != None else "No Name Set" }} | {{ ac.ip if ac.ip != None else "No IP Assigned"}}
{% endfor %}
{% for cab in cablist %}
{{ cab.id }} | {{ cab.game if cab.game != None else "ANY " }} | {{ cab.serial }}
{% endfor %}
{% endif %}
{% endblock content %}