source: trunk/grails-app/views/appCore/manager.gsp @ 143

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

Busy adding TaskSearchService?.

  • 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            <g:if test="${flash.message}">
14                <div class="message">${flash.message}</div>
15            </g:if>
16            <br />
17            <br />
18            <a href="${createLink(controller:'person', action:'list')}">Manage application users</a>
19            <br />
20            <br />
21<!--            View Entity Relationship Diagram:
22            <a href="${createLink(controller:'classDiagram', action:'model', params:[outputFormat: 'pdf', skin: 'classicSpacey', showMethods: 'false', autoUpdate: 'false'])}">pdf</a>
23            and
24            <a href="${createLink(controller:'classDiagram', action:'legend', target:'_blank')}">legend</a>
25            or
26            <a href="${createLink(controller:'classDiagram', action:'show')}">interactive.</a>-->
27        </div>
28    </body>
29</html>
Note: See TracBrowser for help on using the repository browser.