62 lines
1.7 KiB
HTML
62 lines
1.7 KiB
HTML
{% extends 'hr_module_base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block action_panel %}
|
|
<link rel="stylesheet" href="{% static '/css/hr_module_create_schedule.css' %}">
|
|
|
|
<div class="scheduleSearchRow">
|
|
<div class="search_element">Select filter type:
|
|
<select name="category" id="schedule_filter_category">
|
|
<option value="username">Person</option>
|
|
<option value="manager">Manager</option>
|
|
<option value="department">Department</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="search_element">
|
|
<input list="schedule_filter_search" id="searched_string" autocomplete="off" >
|
|
<datalist id="schedule_filter_search">
|
|
</datalist>
|
|
</div>
|
|
<div class="search_element">
|
|
<button type="button" id="load_employees">Search</button>
|
|
</div>
|
|
</div>
|
|
|
|
<table style="width:100%" id="scheduling_list">
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>Name</th>
|
|
<th>Name of the Manager</th>
|
|
<th>Daily working hours</th>
|
|
<th>Default schedule</th>
|
|
<th>Activity type</th>
|
|
<th>Start time</th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<div class="date_select_row">
|
|
<div class="search_element">
|
|
<input type="date" id="planning_lower_boundary">
|
|
</div>
|
|
|
|
<div class="search_element">
|
|
<input type="date" id="planning_upper_boundary">
|
|
</div>
|
|
|
|
<div class="search_element">
|
|
<button type="button" id="run_planning">Create plan</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="popup" id="plan_log_popup">
|
|
|
|
</div>
|
|
|
|
<script type="module" src="{% static '/js/hr_module_create_schedule.js' %}"></script>
|
|
|
|
{% endblock %}
|