Switches
Zurück zum Dashboard
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% if current_user.is_admin %}
Neuen Switch hinzufügen
{% endif %}
| Hostname |
IP |
Username |
{% if current_user.is_admin %}Aktionen | {% endif %}
{% for sw in switches %}
{% if current_user.is_admin %}
{% else %}
| {{ sw['hostname'] }} |
{{ sw['ip'] }} |
{{ sw['username'] }} |
{% endif %}
{% endfor %}