source: trunk/src/grails-app/views/appCore/admin.gsp @ 98

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

More detailing on Task and Entry. Added another authorisation ROLE_Manager and view to go with it. Work on PersonController? delete action.

  • 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    </head>
7    <body>
8        <div class="nav">
9            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
10        </div>
11        <div class="body">
12            <h1>Application Admin</h1>
13            <div class="errors">
14                Warning!<br />
15                The pages bellow this line are for use by the application admin only and NOT for daily use.<br />
16                They allow direct administration of the back-end data, cascade deletion and updates may occur.<br />
17                The manager authorisation and pages should be used for normal daily use.<br />
18            </div>
19            <br/>
20            <div class="dialog">
21                <ul>
22                <g:each var="c" in="${grailsApplication.controllerClasses}">
23                        <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
24                </g:each>
25                </ul>
26            </div>
27        </div>
28    </body>
29</html>
Note: See TracBrowser for help on using the repository browser.