source: branches/TaskRewrite/src/grails-app/views/appCore/admin.gsp @ 71

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

Start changing roles to AppAdmin? and AppUser?.
Add Options view, start code for user changeable passwords.
Repair home and admin bean error variables.

  • Property svn:executable set to *
File size: 903 bytes
RevLine 
[59]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            <span class="menuButton"><g:link controller="person" action="create">New Person</g:link></span>
11        </div>
12        <div class="body">
13            <h1>Welcome to Admin</h1>
14            <br/>
15            <div class="dialog">
16                <ul>
17                <g:each var="c" in="${grailsApplication.controllerClasses}">
[71]18                        <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
[59]19                </g:each>
20                </ul>
21            </div>
22        </div>
23    </body>
24</html>
Note: See TracBrowser for help on using the repository browser.