{% extends "base.html" %} {% block content %}

Organization: {{ organization }}

User: {{ user.first_name }} {{ user.last_name }} ({{ user.username }})

Manage: DevicesWiFi{% if user.is_staff %} ‐ Users{% endif %}
{% for notification in notifications %}
{% if notification.status == 0 %}Notice:{% elif notification.status == 1 %}Warning:{% else %}Emergency:{% endif %} {{ notification.text }}
{% endfor %}

Devices

{% for device in devices %} {% endfor %}
Device ID Common Name Network Latest IP Options {% if user.is_superuser %}{% endif %}
 
{{ device.serial }}
{% if device.name %}{{ device.name }}{% endif %} {{ device.network }}
{% if device.curip %}{{ device.curip }} (at {{ device.lasttime }}){% endif %}
{% if user.is_staff %} {% endif %}{% if user.is_superuser %} {% endif %}

WiFi

{% for wifi in wifis %} {% endfor %}
Common Name SSID Options {% if user.is_staff %}{% endif %}
{{ wifi.serial }}
{{ wifi.ssid }} {% if user.is_staff %} {% endif %}
{% if users %}

Users

{% for auser in users %} {% endfor %}
Username Real name Last Login Options
{% if auser.is_staff %}{% endif %}{{ auser.username }}{% if auser.is_staff %}{% endif %}
{% if auser.is_staff %}{% endif %}{{ auser.first_name }} {{ auser.last_name }}{% if auser.is_staff %}{% endif %} {{ auser.last_login }} {% if auser.email %}{% endif %}
{% endif %} {% endblock %}