This commit is contained in:
SBD
2023-12-09 16:00:44 +03:00
parent 8565018649
commit 17f98ed96b
3 changed files with 30 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
{% trans "Личные данные" %}
</div>
<div class="content_group_inputs_f_p_j">
{% with label=project_request_form.fields.firstname.label %}
{% with field=project_request_form.fields.firstname %}
{% include "widgets/w_input_form_project_request.html" %}
{% endwith %}
</div>

View File

@@ -1,4 +1,9 @@
{% load static %}
<label class="label_f_project_request">
{{ label }}
</label>
{{ field.label }}
</label>
<input
class="input_f_project_request"
name="{{ field.name }}"
id="id_{{ field.name }}"
>