source: trunk/grails-app/views/appCore/start.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?.

File size: 6.4 KB
RevLine 
[139]1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4<meta name="layout" content="main" />
5<title>Start</title>
6<nav:resources override="true"/>
7<resource:tabView skin="tabviewCustom" />
8</head>
9    <body>
10        <div class="nav">
11            <nav:renderSubItems group="nav"/>
12        </div>
13        <div class="body">
14            <g:if test="${flash.message}">
15                <div class="message">${flash.message}</div>
16            </g:if>
17            <g:hasErrors bean="${appCore}">
18                <div class="errors">
19                    <g:renderErrors bean="${appCore}" as="list" />
20                </div>
21            </g:hasErrors>
22
23            <richui:tabView id="tabView">
24
25                <richui:tabLabels>
26                    <richui:tabLabel selected="true" title="Quick Links" />
27                    <richui:tabLabel selected="${0}" title="Reports" />
28                    <richui:tabLabel selected="${0}" title="Options" />
29                    <richui:tabLabel selected="${0}" title="About" />
30                </richui:tabLabels>
31
32                <richui:tabContents>
33
34<!-- Tasks tab -->
35                    <richui:tabContent>
36                        <br />
37                        <br />
[140]38                        <div class="dialog">
39                            <table>
40                                <tbody>
41                       
42                                    <tr class="prop">
43                                        <td valign="top" class="name">
44                                            <label>My Tasks:</label>
45                                        </td>
46                                        <td valign="top" class="value">
47                                            <g:link controller="taskDetailed"
[143]48                                                            action="search"
[144]49                                                            params="[searchMyTodays:'true']">
[140]50                                                            Today's
51                                            </g:link>
52                                            <br />
53                                            <g:link controller="taskDetailed"
[144]54                                                            action="search"
55                                                            params="[searchMyInTheLastWeek:'true']">
[140]56                                                            In the last week
57                                            </g:link>
58                                        </td>
59                                    </tr>
60                       
61                                    <tr class="prop">
62                                        <td valign="top" class="name">
63                                            <label>Tasks:</label>
64                                        </td>
65                                        <td valign="top" class="value">
66                                            <g:link controller="taskDetailed"
[143]67                                                            action="search">
[140]68                                                            Today's
69                                            </g:link>
70                                            <br />
71                                            <g:link controller="taskDetailed"
[144]72                                                            action="search"
73                                                            params="[searchInTheLastWeek:'true']">
[140]74                                                            In the last week
75                                            </g:link>
76                                        </td>
77                                    </tr>
78                                   
79                                </tbody>
80                            </table>
81                        </div>
[139]82                        <br />
83                        <br />
84                    </richui:tabContent>
85<!-- End Tasks tab -->
86
87<!-- Reports tab -->
88                    <richui:tabContent>
89                        <br />
90                        <br />
[147]91                        <div class="dialog">
92                            <table>
93                                <tbody>
94
95                                    <tr class="prop">
96                                        <td valign="top" class="name">
97                                            <label>Static reports:</label>
98                                        </td>
99<!--                                        <td valign="top" class="value">
100                                            <a href="${createLink(action:'changePassword')}"> Password</a>
101                                            <br />
102                                            <a href="${createLink(action:'changeSessionTimeout')}">Session Timeout</a>
103                                        </td>-->
104                                    </tr>
105
106                                </tbody>
107                            </table>
108                        </div> <!--End dialog-->
[139]109                    </richui:tabContent>
110<!-- End Reports tab  -->
111
112<!-- Options tab -->
113                    <richui:tabContent>
114                        <br />
115                        <br />
[147]116                        <div class="dialog">
117                            <table>
118                                <tbody>
119
120                                    <tr class="prop">
121                                        <td valign="top" class="name">
122                                            <label>Change:</label>
123                                        </td>
124                                        <td valign="top" class="value">
125                                            <a href="${createLink(action:'changePassword')}"> Password</a>
126                                            <br />
127                                            <a href="${createLink(action:'changeSessionTimeout')}">Session Timeout</a>
128                                        </td>
129                                    </tr>
130
131                                </tbody>
132                            </table>
133                        </div> <!--End dialog-->
[139]134                    </richui:tabContent>
135<!-- End Options tab -->
136
137<!-- About tab -->
138                    <richui:tabContent>
139                        <g:render template="/about" />
140                    </richui:tabContent>
141<!-- End About tab -->
142
143                </richui:tabContents>
144            </richui:tabView>
145           
146        </div>
147    </body>
148</html>
Note: See TracBrowser for help on using the repository browser.