From 832f68509f7a5fcb8db2b145180513b5822f52cd Mon Sep 17 00:00:00 2001
From: Bryan Brancotte <bryan.brancotte@pasteur.fr>
Date: Tue, 23 Jun 2020 14:43:14 +0200
Subject: [PATCH] put form in a block so we can override it, and eventually
 remove it

---
 .../templates/basetheme_bootstrap/form_host.html                | 2 ++
 basetheme_bootstrap/templates/registration/small_form_host.html | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html b/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
index a9d1505..6080f8a 100644
--- a/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
+++ b/basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
@@ -16,6 +16,7 @@
 {% block content %}
 <div class="col-12 col-xs-12">
     {%if form_title%}<h2>{{form_title}}</h2>{%endif%}
+    {% block form %}
     <form method="post" enctype="multipart/form-data">
         {% csrf_token %}
         {%if form%}
@@ -43,5 +44,6 @@
             <button class="{{btn_classes|default:'btn btn-primary'}}" type="submit">{{ submit_text|default:"OK" }}</button>
         </div>
     </form>
+    {% endblock form %}
 </div>
 {% endblock %}
\ No newline at end of file
diff --git a/basetheme_bootstrap/templates/registration/small_form_host.html b/basetheme_bootstrap/templates/registration/small_form_host.html
index 99e49f9..ea38a6a 100644
--- a/basetheme_bootstrap/templates/registration/small_form_host.html
+++ b/basetheme_bootstrap/templates/registration/small_form_host.html
@@ -22,6 +22,7 @@
 {%endif%}
 <div class="col-12 col-xs-12 {%if custom_css_width %}{{custom_css_width}}{%else%}{%if not medium_width%}col-sm-10 col-sm-offset-1 offset-sm-1 col-md-8 col-md-offset-2 offset-md-2 col-lg-6 col-lg-offset-3 offset-lg-3 col-xl-4 col-xl-offset-4 offset-xl-4 col-xxl-2 col-xxl-offset-5{%endif%}{%if medium_width%}col-md-10 col-md-offset-1 offset-md-1 col-lg-8 col-lg-offset-2 offset-lg-2 col-xl-6 col-xl-offset-3 offset-xl-3 col-xxl-4 col-xxl-offset-4 col-xxxl-2 col-xxxl-offset-5{%endif%}{%endif%}">
     {%if form_title%}<h2>{{form_title}}</h2>{%endif%}
+    {% block form %}
     <form method="post" enctype="multipart/form-data">
         {% csrf_token %}
         {%if form%}{{ form|crispy }}{%endif%}
@@ -30,5 +31,6 @@
         <button class="{{btn_classes|default:'btn btn-primary'}}" type="submit">{{ submit_text|default:"OK" }}</button>
         </div>
     </form>
+    {% endblock form %}
 </div>
 {% endblock %}
\ No newline at end of file
-- 
GitLab