Extract js and css from select widgets to editable class attributes

This commit is contained in:
2024-10-20 13:40:59 +02:00
parent 8bbebfdb13
commit bb3f277ba5
2 changed files with 14 additions and 11 deletions

View File

@ -1,5 +1,7 @@
<script-once src="{{ statics.js }}" defer></script-once>
{% for css in statics.csss %}
{% for js in statics.js %}
<script-once src="{{ js }}" defer></script-once>
{% endfor %}
{% for css in statics.css %}
<link-once rel="stylesheet" type="text/css" href="{{ css }}" defer></link-once>
{% endfor %}