diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-25 12:06:36 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:25 +0100 |
commit | e20dae3750b363cffcf009560de066d5723fc1a9 (patch) | |
tree | 52779d05a64ead1ca6a9882cda58f9dd767a50cc /ishtar_common/views.py | |
parent | 18e931b2085ef3cc0d8c50fd88276a87c59cd696 (diff) | |
download | Ishtar-e20dae3750b363cffcf009560de066d5723fc1a9.tar.bz2 Ishtar-e20dae3750b363cffcf009560de066d5723fc1a9.zip |
Generic extra forms modals for all pages (refs #5052)
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index 45a7530c7..cb1af7c5d 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -119,7 +119,10 @@ def index(request): """ Main page """ - dct = {'warnings': []} + dct = { + 'warnings': [], + "extra_form_modals": wizards.EXTRA_FORM_MODALS + } if settings.PROJECT_SLUG == 'default': dct['warnings'].append(_( "PROJECT_SLUG is set to \"default\". Change it in your " |