{% extends 'base.html.twig' %}
{% block title %}{% endblock %}
{% block stylesheet_links %}
<link href="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/common/main.min.css?{{ random(50, 100000) }}" rel="stylesheet" />
<link href="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/daygrid/main.min.css?{{ random(50, 100000) }}" rel="stylesheet" />
<link href="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/timegrid/main.min.css?{{ random(50, 100000) }}" rel="stylesheet" />
<link href="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/list/main.min.css?{{ random(50, 100000) }}" rel="stylesheet" />
<link href="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/bootstrap/main.min.css?{{ random(50, 100000) }}" rel="stylesheet" />
{% endblock %}
{% block stylesheet_console %}{% endblock %}
{% block side_custom_menu %}{% endblock %}
{% block content_classes %}p-0{% endblock %}
{% block content %}
<div id="eventModal" class="modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Add Event</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<form action="javascript;" id="contactForm">
<div class="modal-body">
<div>
<input type="text" name="name" id="data_name" class="form-control form-control-lg bg-white bg-opacity-5" placeholder="Event Name" value="" />
</div>
<div class="modal-body-start">
</div>
<input type="hidden" name="startDate" id="data_startDate" value="" />
<div>
<input type="text" name="endDate" id="data_endDate" class="form-control form-control-lg bg-white bg-opacity-5" placeholder="End Event" value="" />
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-bs-dismiss="modal">Close</button>
<button type="submit" class="btn btn-outline-theme">Save changes</button>
</div>
</form>
</div>
</div>
</div>
<div id="eventModalAllDay" class="modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Add Event</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<div>
<input type="text" name="registration_form[email]" class="form-control form-control-lg bg-white bg-opacity-5" placeholder="username@address.com" value="" />
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-outline-theme">Save changes</button>
</div>
</div>
</div>
</div>
<div class="calendar">
<!-- BEGIN calendar-body -->
<div class="calendar-body">
<div data-scrollbar="true" data-height="100%" data-skip-mobile="true">
<div id="calendar"></div>
</div>
</div>
<!-- ENG calendar-body -->
<!-- BEGIN calendar-sidebar -->
<div class="calendar-sidebar">
<div class="desktop-sticky-top flex-fill h-100">
<div class="calendar-sidebar-title">Draggable Events:</div>
<div class="fc-event-list" id="external-events">
<div class="fc-event-item"><div class="fc-event-link" data-color="#ff2d55"><i class="fa fa-circle fs-8px me-2 text-pink"></i> Meeting</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#ff3b30"><i class="fa fa-circle fs-8px me-2 text-danger"></i> Group Discussion</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#FF9500"><i class="fa fa-circle fs-8px me-2 text-warning"></i> Brainstorming</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#FFCC00"><i class="fa fa-circle fs-8px me-2 text-yellow"></i> Presentation</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#1ABD36"><i class="fa fa-circle fs-8px me-2 text-success"></i> Holiday</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#0cd096"><i class="fa fa-circle fs-8px me-2 text-theme"></i> Sick Leave</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#30beff"><i class="fa fa-circle fs-8px me-2 text-info"></i> Overtime</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#1f6bff"><i class="fa fa-circle fs-8px me-2 text-blue"></i> Work from Home</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#640DF3"><i class="fa fa-circle fs-8px me-2 text-indigo"></i> Business Travel</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#5b2e91"><i class="fa fa-circle fs-8px me-2 text-purple"></i> Breakfast</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#869ac0"><i class="fa fa-circle fs-8px me-2 text-muted"></i> Lunch</div></div>
<div class="fc-event-item"><div class="fc-event-link" data-color="#869ac0"><i class="fa fa-circle fs-8px me-2 text-muted"></i> Dinner</div></div>
</div>
</div>
</div>
<!-- ENG calendar-sidebar -->
</div>
{% endblock %}
{% block javascript_links %}
<script src="https://wetoy.tech/pwh1a7/plugins/moment/moment.js"></script>
<script src="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/core/main.global.js"></script>
<script src="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/daygrid/main.global.js"></script>
<script src="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/timegrid/main.global.js"></script>
<script src="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/interaction/main.global.js"></script>
<script src="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/list/main.global.js"></script>
<script src="https://wetoy.tech/pwh1a7/plugins/@fullcalendar/bootstrap/main.global.js"></script>
<script src="https://wetoy.tech/pwh1a7/js/api/calendar.js"></script>
{% endblock %}
{% block javascript_console %}
{% endblock %}