{$forms.timesheetsForm.open}
{if $user_dropdown}
{$i18n.label.user}: {$forms.timesheetsForm.user.control}
{/if}
{if $inactive_timesheets}
{$i18n.form.timesheets.active_timesheets}
{/if}
{$i18n.label.thing_name}
{if $show_client}
{$i18n.label.client}
{/if}
{$i18n.label.submitted}
{$i18n.label.approved}
{$i18n.label.view}
{$i18n.label.edit}
{foreach $active_timesheets as $timesheet}
{$timesheet.name|escape}
{if $show_client}
{$timesheet.client_name|escape}
{/if}
{if $timesheet.submit_status}{$i18n.label.yes}{else}{$i18n.label.no}{/if}
{if $timesheet.approve_status == null}
{else}
{if $timesheet.approve_status}{$i18n.label.yes}{else}{$i18n.label.no}{/if}
{/if}
{$i18n.label.view}
{$i18n.label.edit}
{/foreach}
{if $inactive_timesheets}
{$i18n.form.timesheets.inactive_timesheets}
{$i18n.label.thing_name}
{if $show_client}
{$i18n.label.client}
{/if}
{$i18n.label.submitted}
{$i18n.label.approved}
{$i18n.label.view}
{$i18n.label.edit}
{foreach $inactive_timesheets as $timesheet}
{$timesheet.name|escape}
{if $show_client}
{$timesheet.client_name|escape}
{/if}
{if $timesheet.submit_status}{$i18n.label.yes}{else}{$i18n.label.no}{/if}
{if $timesheet.approve_status == null}
{else}
{if $timesheet.approve_status}{$i18n.label.yes}{else}{$i18n.label.no}{/if}
{/if}
{$i18n.label.view}
{$i18n.label.edit}
{/foreach}
{/if}
{$forms.timesheetsForm.close}