diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-03-16 11:41:22 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-03-16 14:42:16 +0100 |
commit | 63c96b0484661419c30a830e2d7ab52c209cf0f0 (patch) | |
tree | 9337e16f9d05b6231e153201d5e86e2334b5c307 /ishtar_common/templates/blocks | |
parent | f5796cb2bf4e3bbe3a71b9cdf9320aea690ddfd9 (diff) | |
download | Ishtar-63c96b0484661419c30a830e2d7ab52c209cf0f0.tar.bz2 Ishtar-63c96b0484661419c30a830e2d7ab52c209cf0f0.zip |
Custom form: can add header message - Profile: custom footer message
Diffstat (limited to 'ishtar_common/templates/blocks')
-rw-r--r-- | ishtar_common/templates/blocks/bs_form_snippet.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ishtar_common/templates/blocks/bs_form_snippet.html b/ishtar_common/templates/blocks/bs_form_snippet.html index 769234949..c80468db9 100644 --- a/ishtar_common/templates/blocks/bs_form_snippet.html +++ b/ishtar_common/templates/blocks/bs_form_snippet.html @@ -12,6 +12,12 @@ </div>{% endif %} {% endfor %} +{% if form.custom_header %} +<div class="alert alert-info" role="alert"> + {{form.custom_header|safe}} +</div> +{% endif %} + {% csrf_token %} {% for field in form.visible_fields %} {% if form.SEARCH_AND_SELECT %} |