Files
WYGIWYH/app/templates/admin/base_site.html
2024-10-14 11:05:32 -03:00

16 lines
303 B
HTML

{% extends "admin/base_site.html" %}
{% block extrahead %}
{{ block.super }}
{% include 'includes/head/favicons.html' %}
<script>
let tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
if (!tz) {
tz = "UTC"
}
document.cookie = "mytz=" + tz + ";path=/";
</script>
{% endblock %}