mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 15:34:01 +01:00
12 lines
252 B
HTML
12 lines
252 B
HTML
{% extends "admin/base_site.html" %}
|
|
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
<script>
|
|
let tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
if (!tz) {
|
|
tz = "UTC"
|
|
}
|
|
document.cookie = "mytz=" + tz + ";path=/";
|
|
</script>
|
|
{% endblock %} |