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

System Management

{% if error is defined %} {% include "core/templates/widgets/err_banner.jinja" %} {% endif %}
{% if "{:08b}".format(sesh.permissions)[6] == "1" %}

User Search

OR
OR

{% endif %} {% if "{:08b}".format(sesh.permissions)[5] == "1" %}

Shop search

OR

{% endif %}
{% if "{:08b}".format(sesh.permissions)[6] == "1" %}
{% for usr in usrlist %}
{{ usr.username if usr.username is not none else "No Name Set"}}
{% endfor %}
{% endif %} {% if "{:08b}".format(sesh.permissions)[5] == "1" %}
{% for shop in shoplist %}
{{ shop.name if shop.name else "No Name Set"}}
{% endfor %}
{% endif %}
{% endblock content %}