Files
Aerbim/templates/widgets/w_checkbox_f_feedback.html
2024-01-10 22:51:23 +03:00

13 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load static %}
{% load i18n %}
<input type="checkbox" onclick="deleteErrorsInput(this)" class="check_box_form_feedback el_form_feedback" id="id_agreement" name="agreement" {% if feedback_form.initial.agreement %}checked{% endif %} />
<label class="label_feedback_form_checkbox standart_txt" for="id_agreement">
{% translate "Принимаю" %} <a href="{% url "static_page" "user-agreement" %}" target="_blank" class="a_user_agreement">
{% translate "Пользовательское соглашение" %}
</a> {% translate "и соглашаюсь с" %} <a href="{% url "static_page" "privacy-policy" %}" target="_blank" class="a_user_agreement">
{% translate "Условиями обработки личных данных" %}
</a>
{% if feedback_form.errors.agreement %}<br><div class="error_input_html">{{ feedback_form.errors.agreement }}</div>{% endif %}
</label>
{% if feedback_form.errors.company %}<div class="error_input_html"></div>{% endif %}
<div class="clear_both"></div>