Fix: width ticket page and account update form

This commit is contained in:
2023-09-10 12:54:54 +09:00
parent 2cba6321c2
commit 9844bccd65
3 changed files with 39 additions and 40 deletions

View File

@@ -31,7 +31,6 @@ class UserProfileForm(forms.ModelForm):
),
PrependedText('first_name', 'First name:'),
PrependedText('last_name', 'Last name:'),
css_class='col-lg-6'
),
Submit('submit', 'Save', css_class='btn btn-primary'),
)

View File

@@ -7,7 +7,9 @@
<h5 class="card-title">Profile</h5>
<hr />
<div class="row">
{% crispy form %}
<div class="col-lg-6">
{% crispy form %}
</div>
</div>
</div>
{% endblock profile_update %}