This commit is contained in:
gsinghpal
2026-03-16 08:14:56 -04:00
parent fdca9518ab
commit e56974d46f
196 changed files with 19739 additions and 3471 deletions

View File

@@ -69,15 +69,15 @@
<t t-foreach="attendances" t-as="att">
<tr>
<td>
<strong><t t-esc="att.check_in.strftime('%a')"/></strong>
<strong><t t-esc="context_timestamp(att.check_in).strftime('%a')"/></strong>
<span style="color:#9ca3af; margin-left:4px;">
<t t-esc="att.check_in.strftime('%b %d')"/>
<t t-esc="context_timestamp(att.check_in).strftime('%b %d')"/>
</span>
</td>
<td><t t-esc="att.check_in.strftime('%I:%M %p')"/></td>
<td><t t-esc="context_timestamp(att.check_in).strftime('%I:%M %p')"/></td>
<td>
<t t-if="att.check_out">
<t t-esc="att.check_out.strftime('%I:%M %p')"/>
<t t-esc="context_timestamp(att.check_out).strftime('%I:%M %p')"/>
<t t-if="att.x_fclk_auto_clocked_out">
<span class="fclk-ts-badge-auto">AUTO</span>
</t>