{% extends "base.html" %} {% load notifications %} {% load manager %} {% block content %}

Organization: {% userOrgas as orgas %}{% if orgas|length == 1 %}{% orgaString %}{% endif %}

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

Manage: DevicesWiFiUsers {% if user.is_superuser %} ‐ NetworksOrganizations {% endif %}
{% getNotifications %}

Devices

{% userDevices as devices %} {% for device in devices %} {% endfor %}
Device ID Common Name Network Latest IP Options {% if user.is_superuser %}{% endif %}
{% if device.model.deprecated %} {% elif user.is_superuser and device.upgrade_available %} {% endif %} 
{{ device.serial }}{% if device.ssid %}
SSID: {{ device.ssid }}{% endif %}
{% 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

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

Users

{% userUsers as users %} {% for auser in users %} {% endfor %}
Username Real name Last Activity Options {% if user.is_superuser %}{% endif %}
{% if auser.is_superuser %} {% endif %}{% 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.userstatus.last_action }} {% if user.is_staff %} {% endif %}{% if auser.email %}{% endif %}{% if user.is_superuser %} {% endif %}
{% if user.is_superuser %}

Networks

{% userNets as networks %} {% for network in networks %} {% endfor %}
Common Name Internal IP External IP Options
{% if network.name %}{{ network.name }}{% endif %}
{{ network.intip }} {{ network.extip }} {% if not network.intip == "No VPN" %} {% endif %}

Organizations

{% for orga in orgas %} {% endfor %}
Name Users Options
{{ orga.name }}
{{ orga.orgausers.all|length }}{% if orga.userlimit %}/{{ orga.userlimit }}{% endif %}
{% endif %} {% endblock %}