mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 05:39:12 +00:00
Payroll Entry - Validate Attendance (#14738)
This commit is contained in:
committed by
Nabin Hait
parent
7324815fdb
commit
a10f118ddd
@@ -30,6 +30,7 @@
|
||||
"public/js/payment/pos_payment.html",
|
||||
"public/js/payment/payment_details.html",
|
||||
"public/js/templates/item_selector.html",
|
||||
"public/js/templates/employees_to_mark_attendance.html",
|
||||
"public/js/utils/item_selector.js",
|
||||
"public/js/help_links.js",
|
||||
"public/js/agriculture/ternary_plot.js",
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{% if data %}
|
||||
<div class="col-md-12 col-xs-12" align="center">
|
||||
<div class="col-md-12 col-xs-12" style="padding-bottom:15px;">
|
||||
<b>Employees to mark attendance</b>
|
||||
</div>
|
||||
{% for item in data %}
|
||||
<div class="col-md-4 col-xs-6" style="padding-bottom:10px;">
|
||||
{{ item.employee }} {{ item.employee_name }}
|
||||
</div>
|
||||
{% } %}
|
||||
</div>
|
||||
{% } else { %}
|
||||
<div></div>
|
||||
{% } %}
|
||||
Reference in New Issue
Block a user