pracownia-timefall/hr_module/templates/hr_module_change_employee_data.html
2021-01-03 18:14:50 +01:00

21 lines
508 B
HTML

{% extends 'hr_module_base.html' %}
{% load static %}
{% block action_panel %}
<link rel="stylesheet" href="{% static '/css/hr_module_change_employee_data.css' %}">
<div>
<label for="username_input">Person username: </label>
<input id="username_input" type="text" value="kowalskija">
<button type="button" id="load_employee_data_button">Search</button>
</div>
<div id="search_results">
</div>
<script src="{% static '/js/hr_module_change_employee_data.js' %}"></script>
{% endblock %}