{% extends "base.html" %} {% set active_page = "sensors" %} {% block title %} Sensor data {% endblock %} {% block divs %} {% block breadcrumbs %} {{ super() }} {% endblock %}
Select dates
{% if user_can_update_sensor %} {% from "_macros.html" import json_attributes_editor_button %}
Edit sensor

Edit {{ sensor.name }}

Parent asset: {{ sensor.generic_asset.name }} (ID: {{ sensor.generic_asset.id }} )
{{ json_attributes_editor_button(label="Open editor", field_label=attributes_label, field_description=attributes_description) }}
Upload data

Upload {{ sensor.name }} data

Belongs to: {{ sensor.generic_asset.name }} (ID: {{ sensor.generic_asset_id }})
Loading...
{% endif %} {% if user_can_create_children_sensor %}
Forecast

At least two days of sensor data are needed to create a forecast.

More options
{% endif %} {% if user_can_delete_sensor %}
Delete data
{% endif %}
{% if user_can_delete_sensor %}
{% endif %}
Loading...
Properties
Name {{ sensor.name }}
Unit {{ sensor._ui_unit | safe }}
Event resolution {{ sensor.event_resolution }}
Timezone {{ sensor.timezone }}
Knowledge horizon type {{ sensor.knowledge_horizon_fnc }}
{% if sensor.attributes %}
Attributes
{% for name, value in sensor.attributes.items() %} {% endfor %}
{{ name }} {{ value }}
{% endif %}
Statistics
There is no data for this sensor yet.
There was a problem fetching statistics for this sensor's data.

{% include 'includes/graphs.html' %} {% if user_can_update_sensor %} {% from "_macros.html" import json_attributes_editor_modal %} {{ json_attributes_editor_modal( api_url="/api/v3_0/sensors/" ~ sensor.id, initial_attributes=sensor.attributes, entity_name=sensor.name ) }} {% endif %} {% endblock %}