mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-02-25 08:54:52 +01:00
21 lines
677 B
HTML
21 lines
677 B
HTML
{% load django_vite %}
|
|
|
|
{% vite_hmr_client %}
|
|
{% vite_asset 'main.js' defer="defer" %}
|
|
|
|
{% include 'includes/scripts/hyperscript/init_tom_select.html' %}
|
|
{% include 'includes/scripts/hyperscript/init_date_picker.html' %}
|
|
{% include 'includes/scripts/hyperscript/htmx_error_handler.html' %}
|
|
{% include 'includes/scripts/hyperscript/sounds.html' %}
|
|
{% include 'includes/scripts/hyperscript/swal.html' %}
|
|
{% include 'includes/scripts/hyperscript/autosize.html' %}
|
|
{% include 'includes/scripts/pull_to_refresh_i18n.html' %}
|
|
|
|
<script defer>
|
|
var tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
if (!tz) {
|
|
tz = "UTC"
|
|
}
|
|
document.cookie = "mytz=" + tz + ";path=/";
|
|
</script>
|