{% extends "base.html" %}
{% block content %}
{% if role <= 1 %}
Login |
Email |
Group |
Role |
Show all
|
{% set counter = 0 -%}
{% for USER in users %}
{% set counter = counter + loop.index0 %}
{% if counter <= 2 %}
{{ USER.1 }} |
{{ USER.2 }} |
{% for group in groups %}
{% if USER.5 == group.0|string() %}
{{ group.1 }} |
{% endif %}
{% endfor %}
{{ USER.4 }} |
|
{% else %}
{{ USER.1 }} |
{{ USER.2 }} |
{% for group in groups %}
{% if group.0|string() == USER.5 %}
{{ group.1 }} |
{% endif %}
{% endfor %}
{{ USER.4 }} |
|
{% endif %}
{% endfor %}
{% endif %}
Server
|
HAproxy status
|
Action
|
Last edit
|
|
Server
|
HAproxy info
|
Server status
|
{% endblock %}