Allow for ignoring of values in import and toggle showing of them

This commit is contained in:
Tom Bloor 2017-11-14 18:41:54 +00:00
parent 7df6fecfc4
commit 1015be7810
No known key found for this signature in database
GPG key ID: 4657C7EBE42CC5CC
5 changed files with 48 additions and 18 deletions

View file

@ -60,13 +60,13 @@
</div>
</nav>
<div class="container">
% if ( my $error = flash 'error' ) {
% if ( my $f_error = flash 'error' ) {
<div class="alert alert-danger" role="alert">
<strong>Error!</strong> <%= $error %>
<strong>Error!</strong> <%= $f_error %>
</div>
% } elsif ( my $error = stash 'error' ) {
% } elsif ( my $s_error = stash 'error' ) {
<div class="alert alert-danger" role="alert">
<strong>Error!</strong> <%= $error %>
<strong>Error!</strong> <%= $s_error %>
</div>
% } elsif ( my $success = flash 'success' ) {
<div class="alert alert-success" role="alert">