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

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

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

Manage: DevicesWiFi {% if user.is_staff %} ‐ Users{% endif %} {% 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 %}
 
{{ 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

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

Users

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

Networks

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

Organizations

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