Welcome, {{ current_user.username }} Logout

Admin Panel

Users

{% for user in users %} {% endfor %}
Username Email Is Admin Last Login Is Active Actions
{{ user.username }} {{ user.email }} {{ user.is_admin }} {{ user.last_login.strftime('%Y-%m-%d %H:%M:%S') if user.last_login else 'Never' }} {{ user.is_active }}

Devices

{% for device in devices %} {% endfor %}
Name Description Device ID Password Actions
{{ device.name }} {{ device.description }} {{ device.device_id }} {{ device.password }}

System Settings

Setting Value
Check Connect Period {{ system_setting.check_connect_period }}
Data Sync Period {{ system_setting.data_sync_period }}
Get Config Period {{ system_setting.get_config_period }}
Point Distance {{ system_setting.point_distance }}
Back to Map