49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
{% extends 'hr_module_base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block action_panel %}
|
|
<link rel="stylesheet" href="{% static '/css/hr_module_create_schedule.css' %}">
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
<div class="search_row">
|
|
<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 name="searched_string" list="schedule_filter_search" id="searched_string" autocomplete="off" >
|
|
<datalist id="schedule_filter_search">
|
|
</datalist>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="search_row">
|
|
<div class="search_element">
|
|
<input name="date_start" type="date" id="date_start" autocomplete="off" >
|
|
</div>
|
|
|
|
<div class="search_element">
|
|
<input name="date_end" type="date" id="date_end" autocomplete="off" >
|
|
</div>
|
|
</div>
|
|
|
|
<div class="search_row">
|
|
<div class="search_element">
|
|
<button type="submit" id="download_report">Download report</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
<script type="module" src="{% static '/js/hr_module_export.js' %}"></script>
|
|
|
|
{% endblock %}
|