Please correct the errors in the form.
{% endif %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% for field in form %}
{% if 'params' in field.id_for_label %}
{{ field.value|json_script:"current-params" }}
{{ transmitter_schema|json_script:"transmitter-schema" }}
The transmitter's parameters were set using an older schema version.
{% else %}
{% if 'itu_notification' in field.id_for_label %}
{% endif %}
{% if 'drift' in field.id_for_label %}
{% endif %}
{% if 'downlink_high' in field.id_for_label %}
{% endif %}
{% if suggestion_mode == 'update' and citation in field.id_for_label %}
{% else %}
{% if field.errors %}
{% render_field field class="form-control is-invalid" placeholder=field.label %}
{% else %}
{% render_field field class="form-control " placeholder=field.label %}
{% endif %}
{% endif %}
{% if 'drift' in field.id_for_label %}
{% elif 'low' in field.id_for_label or 'high' in field.id_for_label %}
{% endif %}
{% for error in field.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% endfor %}