<% if (todayAttendance) { %>
<% if (todayAttendance.status === 'checked_in') { %>
✓ Sudah Check-in
<% } else { %>
✓ Sudah Check-out
<% } %>
Check-in
<%= new Date(todayAttendance.check_in_time).toLocaleString('id-ID') %>
<% if (todayAttendance.check_out_time) { %>
Check-out
<%= new Date(todayAttendance.check_out_time).toLocaleString('id-ID') %>
Durasi Kerja
<%= Math.floor(todayAttendance.work_duration_minutes / 60) %> jam
<%= todayAttendance.work_duration_minutes % 60 %> menit
<% } %>
<% if (todayAttendance.check_in_note) { %>
Catatan Check-in
<%= todayAttendance.check_in_note %>
<% } %>
<% if (todayAttendance.check_out_note) { %>
Catatan Check-out
<%= todayAttendance.check_out_note %>
<% } %>
<% if (todayAttendance.check_in_photo || todayAttendance.check_out_photo) { %>
Foto Absensi
<% if (todayAttendance.check_in_photo) { %>
Check-in
<% } %>
<% if (todayAttendance.check_out_photo) { %>
Check-out
<% } %>
<% } %>
<% if (todayAttendance.status === 'checked_in') { %>
Belum ada foto dipilih. Foto wajib untuk check-out.
Foto wajib
Preview foto final yang akan dikirim:
<% } %>
<% } else { %>
✗ Belum Check-in
Silakan lakukan check-in untuk memulai hari kerja Anda.
Belum ada foto dipilih. Foto wajib untuk check-in.
Foto wajib
Preview foto final yang akan dikirim:
<% } %>
📍 Mengambil lokasi GPS...