{% extends "layout.html" %} {% set active_page = "data" %} {% set help_page = ["data", _('Data')] %} {% block title %} - {{_('Data')}}{% endblock %} {% block head %}{% endblock %} {%- block body %}
{% include 'flash_messages.html' %}

{{_('Data')}}

{{_('Data are individual pieces of information stored for later use. They may be values acquired from sensors, signals from analog-to-digital controllers, a response from a command, or even math performed on other data to produce an average, to name a few. Add, configure, and activate Inputs to begin recording measurements to the database and allow them to be used throughout Mycodo.')}}

{{form_add_input.hidden_tag()}}
{{form_add_input.input_type(class_='form-control')}}
{{form_add_input.input_add(class_='form-control btn btn-default')}}
{{form_add_math.hidden_tag()}}
{{form_add_math.math_type(class_='form-control')}}
{{form_add_math.math_add(class_='form-control btn btn-default')}}
{% if input %} {% include 'pages/data_options/input.html' %} {% endif %} {% if math %} {% include 'pages/data_options/math.html' %} {% endif %}
{% endblock -%}