{% extends "layout.html" %} {% block content %}

Configuration:

Units

{{ cfg_form.csrf_token }} {{ cfg_form.hidden_tag() }}
{{ cfg_form.paramProfileName.label }} {{ cfg_form.paramProfileName() }}
{% if duplicate == true %}
Profile name already exists.
{% endif %}
{{ cfg_form.paramHeight.label }} {{ cfg_form.paramHeight() }}
{% if invalid_height_offset == true %} {% if Units == "Inches" %}
Max height is 275 inches.
{% else %}
Max height is 700 centimeters.
{% endif %} {% endif %}
{{ cfg_form.paramLeftRight.label }} {{ cfg_form.paramLeftRight() }}
{% if invalid_center_offset == true %} {% if Units == "Inches" %}
Max Antenna Left/Right is 1259 inches.
{% else %}
Max Antenna Left/Right is 3200 centimeters.
{% endif %} {% endif %}
{{ cfg_form.submit() }}

{% endblock %}