diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-22 18:34:14 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-22 18:34:50 +0100 |
commit | 476a4e6d3e025d1b8260e358f00ba4ffec8d1c61 (patch) | |
tree | 4e0bfb0c2ba0e73d92c4889e4faa422f96e342cd /ishtar_common/templates | |
parent | 21df05c62b61b1366882db5cf3792954123508aa (diff) | |
download | Ishtar-476a4e6d3e025d1b8260e358f00ba4ffec8d1c61.tar.bz2 Ishtar-476a4e6d3e025d1b8260e358f00ba4ffec8d1c61.zip |
Profile: force refresh for session external - minor fix on UI
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r-- | ishtar_common/templates/ishtar/forms/profile.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ishtar_common/templates/ishtar/forms/profile.html b/ishtar_common/templates/ishtar/forms/profile.html index 926f035e2..795ab6ab1 100644 --- a/ishtar_common/templates/ishtar/forms/profile.html +++ b/ishtar_common/templates/ishtar/forms/profile.html @@ -1,5 +1,5 @@ {% extends "ishtar/form.html" %} -{% load i18n inline_formset table_form %} +{% load i18n inline_formset table_form ishtar_helpers %} {% block extra_head %} <script type='text/javascript'> var base_profile_url = "{% url 'profile' %}"; @@ -33,9 +33,9 @@ $(document).ready(function(){ <div class="form-row"> {% for field in form.visible_fields %} {% if forloop.counter0 == 0 %} - <div class="form-group col-lg-12"> - {{field|safe}} - </div> + <div class="form-group col-12"><div class="col-lg-6"> + {{field|bs_field|safe}} + </div></div> </div> <div class="form-row"> {% elif field.name == 'delete_profile' %} |