@@ -1062,21 +1035,6 @@
$(anchorElement).parent().find('#newTab').hide();
}
- $(document).ready(function() {
- // Add an input event listener to the search bar
- $("#employeeSearch").on("input", function() {
- // Get the value entered in the search bar
- var searchValue = $(this).val().toLowerCase();
-
- // Iterate through each table row and hide/show based on the search value
- $("table tbody tr").each(function() {
- var employeeId = $(this).find("td:first-child").text().toLowerCase();
-
- // Toggle the visibility of the row based on whether it contains the search value
- $(this).toggle(employeeId.includes(searchValue));
- });
- });
- });
diff --git a/templates/work_info_complete.html b/templates/work_info_complete.html
new file mode 100644
index 000000000..a128017ca
--- /dev/null
+++ b/templates/work_info_complete.html
@@ -0,0 +1,97 @@
+{% load static %}
+{% load i18n %}
+
+
+
+
+
+
+ {% if employees_with_pending.has_previous %}
+
+
+
+ {% endif %}
+
+ {% if employees_with_pending.has_next %}
+
+
+
+ {% endif %}
+ {% if employees_with_pending.has_next or employees_with_pending.has_previous %}
+
+ {% endif %}
+
+
+
+
+
\ No newline at end of file