source: trunk/src/grails-app/views/person/admin.gsp @ 48

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

Hopefully a CSS fix for IE

  • Property svn:executable set to *
File size: 903 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 class="create" 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.