source: trunk/grails-app/views/appCore/appAdmin.gsp @ 139

Last change on this file since 139 was 139, checked in by gav, 15 years ago

Install Navigation plugin, work on navigation and hopefully fixed a few more IE vs Firefox CSS issues.
New skin for class-diagram plugin.
Adjust security config to suite.
Replace home.gsp with start.gsp, remove options.gsp and acknowledgements.gsp as they are now on start.gsp tabs.
Create search pages for Tasks, Assets and Inventory.
Change suggested login to manager.
Change all date formats to format="EEE, dd-MMM-yyyy".

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1<html>
2    <head>
3        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4        <meta name="layout" content="main" />
5        <title>Admin</title>
6        <nav:resources override="true"/>
7    </head>
8    <body>
9        <div class="nav">
10            <nav:renderSubItems group="nav"/>
11        </div>
12        <div class="body">
13            <h1>Application Admin</h1>
14            <div class="errors">
15                Warning!<br />
16                The pages bellow this line are for use by the application admin only and NOT for daily use.<br />
17                They allow direct administration of the back-end data, uncontrolled cascade deletion and updates may occur.<br />
18                The manager authorisation and pages should be used for normal daily use.<br />
19            </div>
20            <br/>
21            <div class="dialog">
22                <ul>
23                <g:each var="c" in="${grailsApplication.controllerClasses}">
24                        <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
25                </g:each>
26                </ul>
27            </div>
28        </div>
29    </body>
30</html>
Note: See TracBrowser for help on using the repository browser.