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

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

Install Navigation plugin, work on navigation and hopefully fixed a few more IE vs Firefox CSS issues.
New skin for class-diagram plugin.
Adjust security config to suite.
Replace home.gsp with start.gsp, remove options.gsp and acknowledgements.gsp as they are now on start.gsp tabs.
Create search pages for Tasks, Assets and Inventory.
Change suggested login to manager.
Change all date formats to format="EEE, dd-MMM-yyyy".

  • Property svn:executable set to *
File size: 1.1 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.