diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2022-05-26 19:04:51 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2022-05-26 19:05:02 +0200 |
commit | 1f477b7d4a9f1e701c36a7a21d374b29821f4e54 (patch) | |
tree | db50299265e56c30dc7e271620d6073d20175887 /templates | |
parent | add support for heading in custom params (diff) | |
download | scout-subs-1f477b7d4a9f1e701c36a7a21d374b29821f4e54.tar.gz scout-subs-1f477b7d4a9f1e701c36a7a21d374b29821f4e54.zip |
fix dropdown on safari (ios)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/registration/base_admin.html | 1 | ||||
-rw-r--r-- | templates/registration/base_client.html | 1 | ||||
-rw-r--r-- | templates/registration/base_simple.html | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/templates/registration/base_admin.html b/templates/registration/base_admin.html index 94742fa..58413a8 100644 --- a/templates/registration/base_admin.html +++ b/templates/registration/base_admin.html @@ -160,6 +160,7 @@ {% block script %} {% endblock%} </script> + <script type="text/javascript" src="{% static 'utils.js' %}"></script> </body> </html> {% endwith %} diff --git a/templates/registration/base_client.html b/templates/registration/base_client.html index 18b7868..cb282b5 100644 --- a/templates/registration/base_client.html +++ b/templates/registration/base_client.html @@ -181,6 +181,7 @@ {% block script %} {% endblock%} </script> + <script type="text/javascript" src="{% static 'utils.js' %}"></script> </body> </html> {% endwith %} diff --git a/templates/registration/base_simple.html b/templates/registration/base_simple.html index dc36f06..30f7e32 100644 --- a/templates/registration/base_simple.html +++ b/templates/registration/base_simple.html @@ -90,6 +90,7 @@ {% block script %} {% endblock %} </script> + <script type="text/javascript" src="{% static 'utils.js' %}"></script> </body> </html> {% endwith %} |