% layout 'standard', title => 'Admin Panel', sb_active => 'admin';
%= include 'admin/_nav', page => 'servers'
% if ( my $confirmation = flash 'confirmation' ) {
<%== $confirmation %>
% }
% if ( my $confirmation = flash 'error_message' ) {
<%== $confirmation %>
% }
% if ( $c->stash->{success} ) {
<%= $c->stash->{success_message} %>
% }
% if ( $c->stash->{errors} ) {
There were errors with your request that could not be resolved:
% for my $error ( @{$c->stash->{errors}} ) {
- <%= $error %>
% }
% }
| ID |
FQDN |
Delete |
% for my $server ( @{$servers} ) {
| <%= $server->id %> |
<%= $server->hostname %> |
|
% }