pracownia-timefall/hr_module/templates/hr_module_show_schedule.html
2021-01-10 21:10:39 +01:00

21 lines
697 B
HTML

{% extends 'hr_module_base.html' %}
{% load static %}
{% block action_panel %}
<link rel="stylesheet" href="{% static '/css/calendar.css' %}">
<link rel="stylesheet" href="{% static '/css/calendar_local.css' %}">
<link rel="stylesheet" href="{% static '/css/hr_module_show_schedule.css' %}">
<div>
<label for="username_input">Person username: </label>
<input id="username_input" type="text" value="kowalskija">
<button type="button" id="load_schedule_button">Load Schedule</button>
</div>
<div id="calendar_box"></div>
<script type="module" src="{% static '/js/../../static/js/calendar_ajax_hr_module_main.js' %}"></script>
{% endblock %}