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

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

Re-install class-diagram from local svn build with patch to allow war deployment.
Class-diagram overrides removed from Config.groovy since these have all been included upstream.
Tidy comments in SecurityConfig?.groovy
Some work on adding assignedPerson work flow and PersonController?.
Add navAlt and filterPane search to Person and TaskProcedure?.

  • Property svn:executable set to *
File size: 2.0 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            <div class="dialog">
17                <table>
18                    <tbody>
19
20                        <tr class="prop">
21                            <td valign="top" class="name">
22                                <label>Manage:</label>
23                            </td>
24                            <td valign="top" class="value">
25                                <a href="${createLink(controller:'person', action:'list')}">Application users</a>
26                            </td>
27                        </tr>
28
29                        <tr class="prop">
30                            <td valign="top" class="name">
31                                <label>Entity Relationship Diagram:</label>
32                            </td>
33                            <td valign="top" class="value">
34
35                                <a href="${createLink(controller:'classDiagram', action:'model', params:[outputFormat: 'pdf', skin: 'classicSpaced', showMethods: 'false', autoUpdate: 'false'])}">PDF</a>
36                                <br />
37                                <a href="${createLink(controller:'classDiagram', action:'legend', target:'_blank')}">Legend</a>
38                                <br />
39                                <a href="${createLink(controller:'classDiagram', action:'show')}">Interactive.</a>
40                            </td>
41                        </tr>
42
43                    </tbody>
44                </table>
45            </div> <!--End dialog-->
46        </div> <!--End body-->
47    </body>
48</html>
Note: See TracBrowser for help on using the repository browser.