&|/_elements/wrapper, title => 'Jifty Administrative Console' &>
<%_('Database Administration')%>
<%_('This console lets you manage the records in your Jifty database. Below, you should see a list of all your database tables. Feel free to go through and add, delete or modify records.')%>
<%_(q{To disable this administrative console, add "framework: AdminMode: 0" to your application's configuration file.})%>
<%_('Models')%>
% foreach my $model (Jifty->class_loader->models) {
% next unless $model->isa('Jifty::Record');
% next unless ($model =~ /^(?:.*)::(.*?)$/);
% my $type = $1;
- <% Jifty->web->link( url => '/__jifty/admin/model/'.$type, label => $type)%>
%}
<%_('Actions')%>
% foreach my $action (Jifty->api->actions) {
% Jifty::Util->require($action);
% next if ( $action->can('autogenerated') and $action->autogenerated);
- <% Jifty->web->link( url => '/__jifty/admin/action/'.$action, label => $action) %>
% }
Done?
<% Jifty->web->return( to => "/", label => 'Back to the application') %>
&>