голова
Код: Выделить всё
Код: Выделить всё
Attendance Report by Employee for {{ selected_month }}
Full NameAttendance Count
{% for index, row in attendance_data.iterrows() %}
{{ row['Assignee Name'] }}{{ row['Attendance Count'] }}
{% endfor %}
Код: Выделить всё
$(document).ready(function() {
// Attendance DataTable with SearchBuilder
new DataTable('#attendanceTable', {
"pageLength": 10,
"order": [[1, "desc"]],
layout: {
top1: 'searchBuilder' // Adding the SearchBuilder feature
}
});
});
Подробнее здесь: https://stackoverflow.com/questions/793 ... atables-js
Мобильная версия