diff --git a/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html b/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html index 6080f8a7725d9723edf2c8e25967eaae4a6fcc07..cfbd7f08223b6af1e34e47151797cdcd30088820 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 ea38a6ab350f1c255864f69c8eeac9f5f02c7e32..a19b7e1aa41fc02b7b35e6d53ec1858aa415b1f3 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 c3d140c2f06ce57306c0edd4ae5dffbc7893da24..ae312b5dbdefe349e71b8cd3310e3abc2476d95e 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',