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

@@ -1141,7 +1141,7 @@ body.n_scroll{
.first_title_project_request{
width: 100%;
text-align: left;
font-weight: 400;
font-weight: 500;
font-size: 20px;
margin-bottom: 40px;
}
@@ -1157,6 +1157,26 @@ body.n_scroll{
margin-top: 40px;
}
.label_f_project_request{
.title_of_group_from_p_j{
font-weight: 400;
font-size: 20px;
padding-bottom: 10px;
}
.content_group_inputs_f_p_j{
padding: 30px 70px 0 70px;
border-top: 1px solid #9CDDF7;
}
.label_f_project_request{
font-size: 16px;
font-weight: 400;
display: block;
}
.input_f_project_request{
border-radius: 1px;
border: 1px solid #E3E3E3;
background: #FFF;
box-shadow: 1px 1px 2px 0 rgba(151, 167, 176, 0.20);
}

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 }}"
>