5 lines
568 B
HTML
5 lines
568 B
HTML
{% load static %}
|
|
<input type="checkbox" onclick="deleteErrorsInput(this)" class="check_box_form_feedback{% if feedback_form.errors.agreement %} error{% endif %} el_form_feedback" id="id_agreement" name="agreement" {% if feedback_form.initial.agreement %}checked{% endif %} />
|
|
<label class="label_feedback_form_checkbox{% if feedback_form.errors.agreement %} error{% endif %} standart_txt" for="id_agreement">{{ feedback_form.agreement.label }}</label>
|
|
{% if feedback_form.errors.company %}<div class="error_input_html"></div>{% endif %}
|
|
<div class="clear_both"></div> |