https://git.jolheiser.com/mint.git
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{% load static %} <!DOCTYPE html> <html lang='en'> <head> <meta charset='utf-8'> <script src='https://cdn.jsdelivr.net/npm/fullcalendar@6.1.18/index.global.min.js'></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script> {{ json_ctx|json_script:"ctx-data" }} <script>const ctxData = JSON.parse(document.getElementById("ctx-data").textContent);</script> <script src="{% static 'js/mint.js' %}"></script> <link href="{% static 'css/mint.css' %}" rel="stylesheet"/> </head> <body> <div id='calendar' class='max-w-[90vw] max-h-[90vh] m-[40px_auto]'></div> </body> </html>