mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-02-25 00:44:52 +01:00
28 lines
972 B
HTML
28 lines
972 B
HTML
{% load webpack_loader %}
|
|
|
|
{% javascript_pack 'bootstrap' attrs="defer" %}
|
|
{% javascript_pack 'sweetalert2' attrs="defer" %}
|
|
{% javascript_pack 'select' attrs="defer" %}
|
|
{% javascript_pack 'datepicker' %}
|
|
{% javascript_pack 'autosize' attrs="defer" %}
|
|
|
|
{% 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' %}
|
|
|
|
{% javascript_pack 'htmx' attrs="defer" %}
|
|
{% javascript_pack 'charts' %}
|
|
|
|
<script>
|
|
let tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
if (!tz) {
|
|
tz = "UTC"
|
|
}
|
|
document.cookie = "mytz=" + tz + ";path=/";
|
|
</script>
|