Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Bryan BRANCOTTE
django-basetheme-bootstrap
Commits
832f6850
Commit
832f6850
authored
Jun 23, 2020
by
Bryan BRANCOTTE
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
put form in a block so we can override it, and eventually remove it
parent
cbebadbe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
...me_bootstrap/templates/basetheme_bootstrap/form_host.html
+2
-0
basetheme_bootstrap/templates/registration/small_form_host.html
...eme_bootstrap/templates/registration/small_form_host.html
+2
-0
No files found.
basetheme_bootstrap/templates/basetheme_bootstrap/form_host.html
View file @
832f6850
...
...
@@ -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
basetheme_bootstrap/templates/registration/small_form_host.html
View file @
832f6850
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment