{% extends "base/base.html" %} {% load humanize %} {% block title %} User Management {% endblock title %} {% block page_heading %} User Management {% endblock page_heading %} {% block main_content %}
Create new users
{% include "../base/alert_messages.html" with messages=messages %}

Markers

Enable all markers Disable all markers Marker Quotas

{% for user in markers %} {% if user in online_now_ids %} {% else %} {% endif %} {% if user.auth_token %} {% else %} {% endif %} {% endfor %}
Name Online (web) Online (client) Last login Enabled
{{ user.username }} {% if user in lead_markers %} {% endif %}
change password
OnlineOfflineOnlineOffline{{ user.last_login|naturaltime }} {% if user in lead_markers %} {% else %} {% endif %}
{% if not user.has_usable_password %}(no password set){% endif %}
{% csrf_token %}

Notes:

Scanners

Enable all scanners Disable all scanners

{% for user in scanners %} {% if user in online_now_ids %} {% else %} {% endif %} {% endfor %}
Name Online Last login Enabled
{{ user.username }}
change password
OnlineOffline{{ user.last_login|naturaltime }}
{% if not user.has_usable_password %}(no password set){% endif %}
{% csrf_token %}

Managers

{% for user in managers %} {% if user in online_now_ids %} {% else %} {% endif %} {% endfor %}
Name Online Last login
{{ user.username }}
change password
OnlineOffline{{ user.last_login|naturaltime }} {% csrf_token %}
{% endblock main_content %}