{% extends 'allianceauth/base-bs5.html' %} {% load i18n %} {% load static %} v {% block extra_css %} {% include 'bundles/jquery-datetimepicker-css.html' %} {% include "opcalendar/partials/base/stylesheets.html" %} {% endblock extra_css %} {% block page_title %} {% translate "Operation Calendar" %} {% endblock page_title %} {% block header_nav_collapse_right %} {% include "opcalendar/partials/base/menu.html" %} {% endblock %} {% block header_nav_brand %} {% translate "Operation Calendar" %} {% endblock %} {% block content %}

{{ title }}

{% block details %}{% endblock %}
{% endblock %} {% block extra_script %} $('#id_start_time').datetimepicker({ setlocale: '{{ LANGUAGE_CODE }}', {% if NIGHT_MODE %} theme: 'dark', {% else %} theme: 'default', {% endif %} mask: true, format: 'Y-m-d H:i', minDate: 0 }); $('#id_end_time').datetimepicker({ setlocale: '{{ LANGUAGE_CODE }}', {% if NIGHT_MODE %} theme: 'dark', {% else %} theme: 'default', {% endif %} mask: true, format: 'Y-m-d H:i', minDate: 0 }); {% endblock extra_script %}