This commit is contained in:
SBD
2023-12-09 15:51:49 +03:00
parent 18a8f3d3f7
commit 8565018649
3 changed files with 9 additions and 3 deletions

View File

@@ -1156,3 +1156,7 @@ body.n_scroll{
.form_project_request{ .form_project_request{
margin-top: 40px; margin-top: 40px;
} }
.label_f_project_request{
}

View File

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

View File

@@ -1,4 +1,4 @@
{% load static %} {% load static %}
<label> <label class="label_f_project_request">
{{ project_request_form.name_input.label }} {{ label }}
</label> </label>