From 78b97ab69fcefd65becc48053bb95def441cf88c Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Tue, 27 Oct 2020 17:50:18 +0100 Subject: [PATCH] pull-right was from fa, not bs --- .../templates/basetheme_bootstrap/form_host.html | 2 +- basetheme_bootstrap/templates/registration/small_form_host.html | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html b/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html index 6080f8a..cfbd7f0 100644 --- a/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html +++ b/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html @@ -40,7 +40,7 @@ {%if cancel_url%} <a role="button" class="btn btn-primary" href="{{cancel_url}}">{{ cancel_text|default:"Cancel"}}</a> {%endif%} - <div class="form-class {{btn_container_classes|default:'pull-right'}}"> + <div class="form-class {{btn_container_classes|default:'pull-right float-right'}}"> <button class="{{btn_classes|default:'btn btn-primary'}}" type="submit">{{ submit_text|default:"OK" }}</button> </div> </form> diff --git a/basetheme_bootstrap/templates/registration/small_form_host.html b/basetheme_bootstrap/templates/registration/small_form_host.html index ea38a6a..a19b7e1 100644 --- a/basetheme_bootstrap/templates/registration/small_form_host.html +++ b/basetheme_bootstrap/templates/registration/small_form_host.html @@ -27,7 +27,7 @@ {% csrf_token %} {%if form%}{{ form|crispy }}{%endif%} {%if cancel_url%}<a role="button" class="{{btn_cancel_classes|default:'btn btn-primary'}}" href="{{cancel_url}}">{{ cancel_text|default:"Cancel" }}</a>{%endif%} - <div class="form-class {{btn_container_classes|default:'pull-right'}}"> + <div class="form-class {{btn_container_classes|default:'pull-right float-right'}}"> <button class="{{btn_classes|default:'btn btn-primary'}}" type="submit">{{ submit_text|default:"OK" }}</button> </div> </form> diff --git a/setup.py b/setup.py index c3d140c..ae312b5 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ readme = open('README.rst').read() setup( name='django-basetheme-bootstrap', - version='0.2.42', + version='0.2.43', description='Django Basetheme Bootstrap', long_description=readme, author='Bryan Brancotte', -- GitLab