Files
WYGIWYH/app/templates/includes/scripts.html
2025-10-28 14:13:30 -03:00

32 lines
968 B
HTML

{% load django_vite %}
{% vite_hmr_client %}
{% vite_asset 'bootstrap' defer=True %}
{% vite_asset 'sweetalert2' defer=True %}
{% vite_asset 'select' defer=True %}
{% vite_asset 'datepicker' %}
{% vite_asset 'autosize' defer=True %}
{% include 'includes/scripts/hyperscript/init_tom_select.html' %}
{% include 'includes/scripts/hyperscript/init_date_picker.html' %}
{% include 'includes/scripts/hyperscript/hide_amount.html' %}
{% include 'includes/scripts/hyperscript/tooltip.html' %}
{% include 'includes/scripts/hyperscript/autosize.html' %}
{% include 'includes/scripts/hyperscript/htmx_error_handler.html' %}
{% include 'includes/scripts/hyperscript/sounds.html' %}
{% include 'includes/scripts/hyperscript/swal.html' %}
{% vite_asset 'htmx' defer=True %}
{% vite_asset 'charts' %}
{% vite_asset 'style' %}
<script>
let tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
if (!tz) {
tz = "UTC"
}
document.cookie = "mytz=" + tz + ";path=/";
</script>