$def with (batch, rows, total_rows, page, limit, sort, status_counts) $var title: $_("Batch Import Status")

$_("Batch Import Status")

$_('Batch ID:') $batch.id

$_('Batch Name:') $batch.name

$_('Submitter:') $batch.submitter

$_('Submit Time:') $datestr(batch.submit_time)

$_('Status Summary')

$_('Import Items')

$for row in rows:
$_('Added Time') $_('Import Time') $_('Status') $_('Error') $_('IA ID') $_('Data') $_('OL Key') $_('Comments') $_('Submitter')
$datestr(row.added_time) $(datestr(row.import_time) if row.import_time else _('Not yet imported')) $row.status $row.error $row.ia_id $row.data $if row.ol_key: $row.ol_key $else: $row.ol_key $row.comments $row.submitter
$:macros.Pager(page, total_rows, limit)