% layout 'admin'; % title 'Import'; % content_for javascript => begin % end % if ( my $error = flash 'error' ) { % } elsif ( my $success = flash 'success' ) { % }

CSV Import

Import Data
% for my $import ( $import_rs->all ) { % my $total = $import_rs->get_values( $import->id, 1, 1 )->count; % my $unimported = $import_rs->get_values( $import->id, undef, undef )->count; % my $with_ignored = $import_rs->get_values( $import->id, 1, undef )->count; % my $with_imported = $import_rs->get_values( $import->id, undef, 1 )->count; % my $ignored_total = $with_ignored - $unimported; % my $imported_total = $with_imported - $unimported;
<%= format_human_datetime $import->date %> <%= $import->id %>
Unimported: <%= $unimported %>
Ignored: <%= $ignored_total %>
Imported: <%= $imported_total %>
Total: <%= $total %>
% }
%= bootstrap_pagination( $c->param('page') || 1, $import_rs->pager->last_page, { class => 'justify-content-center' } );