15 lines
960 B
HTML
15 lines
960 B
HTML
|
|
||
|
{% comment %}
|
||
|
These are the scripts, which are generally loaded by using form.meda, as stated in the
|
||
|
dal documentation (django-autocomplete-light). By including these scripts independent from any script
|
||
|
we can easily use dal in modal forms.
|
||
|
|
||
|
https://django-autocomplete-light.readthedocs.io/en/master/tutorial.html#using-autocompletes-outside-the-admin
|
||
|
{% endcomment %}
|
||
|
<link href="/static/admin/css/vendor/select2/select2.css" type="text/css" media="screen" rel="stylesheet">
|
||
|
<link href="/static/admin/css/autocomplete.css" type="text/css" media="screen" rel="stylesheet">
|
||
|
<link href="/static/autocomplete_light/select2.css" type="text/css" media="screen" rel="stylesheet">
|
||
|
<script src="/static/admin/js/vendor/select2/select2.full.js"></script>
|
||
|
<script src="/static/autocomplete_light/autocomplete_light.js"></script>
|
||
|
<script src="/static/autocomplete_light/select2.js"></script>
|
||
|
<script src="/static/autocomplete_light/i18n/de.js"></script>
|