Fix broken forms

This commit is contained in:
Antoine Bartuccio 2022-08-06 14:24:43 +02:00
parent 0c2494cb34
commit f56263d6bd

View File

@ -15,16 +15,16 @@
<script defer href="{{ static('core/font-awesome/js/fontawesone.min.js') }}"></script>
<!-- Jquery declared here to be accessible in every django widgets -->
<script defer src="{{ static('core/js/jquery-3.1.0.min.js') }}"></script>
<script src="{{ static('core/js/jquery-3.1.0.min.js') }}"></script>
<!-- Put here to always have acces to those functions on django widgets -->
<script defer src="{{ static('core/js/script.js') }}"></script>
<script src="{{ static('core/js/script.js') }}"></script>
{% endblock %}
</head>
<body>
{# The token is always passed here to be accessible from the dom #}
{# See this workaround https://docs.djangoproject.com/en/2.0/ref/csrf/#acquiring-the-token-if-csrf-use-sessions-is-true #}
<!-- The token is always passed here to be accessible from the dom -->
<!-- See this workaround https://docs.djangoproject.com/en/2.0/ref/csrf/#acquiring-the-token-if-csrf-use-sessions-is-true -->
{% csrf_token %}
<!-- BEGIN HEADER -->
{% block header %}