made changes to still have status view from delete
This commit is contained in:
parent
cea9e62073
commit
b233acfd64
2 changed files with 11 additions and 2 deletions
|
@ -4,8 +4,8 @@
|
|||
|
||||
# v0.10.5
|
||||
|
||||
* **Admin Feature** Removed generic Transaction List
|
||||
* **Admin Feature** Amended user view to have accordion
|
||||
* **Admin Fix** Removed generic Transaction List
|
||||
* **Admin Fix** Amended user view to have accordion
|
||||
|
||||
# v0.10.4
|
||||
|
||||
|
|
|
@ -2,3 +2,12 @@
|
|||
% title 'Transactions';
|
||||
% content_for javascript => begin
|
||||
% end
|
||||
% if ( my $error = flash 'error' ) {
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<strong>Error!</strong> <%= $error %>
|
||||
</div>
|
||||
% } elsif ( my $success = flash 'success' ) {
|
||||
<div class="alert alert-success" role="alert">
|
||||
<strong>Success!</strong> <%= $success %>
|
||||
</div>
|
||||
% }
|
||||
|
|
Reference in a new issue