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

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

Lots of changes to setup Acegi, should be complete with all current pages secured.
Added CSS and PersonGroup? and PersonGroupType?.
Adjust BootStrap? to suite.
Add Home and Admin pages.

  • Property svn:executable set to *
File size: 908 bytes
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            <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}">
18                        <li class="controller"><g:link
19    controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
20                </g:each>
21                </ul>
22            </div>
23        </div>
24    </body>
25</html>
Note: See TracBrowser for help on using the repository browser.