mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-16 22:16:40 +01:00
16 lines
303 B
HTML
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 %}
|