{% extends "base.html" %}
{% block body %}
{% if dev %}
Device details
Device ID |
{{device_id}} |
Last update |
{{dev.last_update.timestamp}} UTC |
Owner |
{{dev.user.email}} |
Manufacturer |
{{dev.manufacturer}} |
Model |
{{dev.model}} |
OS |
{{dev.os}} |
|
{% include "map.html" %}
{% include "timeseries.html" %}
{% endif %}
{% if schedule %}
{% include "schedulelist.html" %}
{% endif %}
{% if properties %}
Device properties history
Timestamp (UTC) |
App version |
IP address |
OS version |
Location |
Location type |
Network type |
Carrier |
{% for prop in properties %}
{{prop.GetTimestampInZone}} |
{{prop.app_version}} |
{{prop.ip_address}} |
{{prop.os_version}} |
{% if prop.location %}
{{prop.location.lat}},{{prop.location.lon}}
{% else %}
N/A
{% endif %}
| {{prop.location_type}} |
{{prop.network_type}} |
{{prop.carrier}} |
{% endfor %}
{% endif %}
{% if measurements %}
{% include "measurementlist.html" %}
{% endif %}
{% endblock %}