source: trunk/grails-app/views/appCore/start.gsp @ 140

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

Install filterPane plugin and configure for Tasks.

File size: 4.6 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>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 />
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"
48                                                            action="searchMyTodays">
49                                                            Today's
50                                            </g:link>
51                                            <br />
52                                            <g:link controller="taskDetailed"
53                                                            action="searchMyInTheLastWeek">
54                                                            In the last week
55                                            </g:link>
56                                        </td>
57                                    </tr>
58                       
59                                    <tr class="prop">
60                                        <td valign="top" class="name">
61                                            <label>Tasks:</label>
62                                        </td>
63                                        <td valign="top" class="value">
64                                            <g:link controller="taskDetailed"
65                                                            action="searchTodays">
66                                                            Today's
67                                            </g:link>
68                                            <br />
69                                            <g:link controller="taskDetailed"
70                                                            action="searchInTheLastWeek">
71                                                            In the last week
72                                            </g:link>
73                                        </td>
74                                    </tr>
75                                   
76                                </tbody>
77                            </table>
78                        </div>
79                        <br />
80                        <br />
81                    </richui:tabContent>
82<!-- End Tasks tab -->
83
84<!-- Reports tab -->
85                    <richui:tabContent>
86                        <br />
87                        <br />
88                        Static reports
89                    </richui:tabContent>
90<!-- End Reports tab  -->
91
92<!-- Options tab -->
93                    <richui:tabContent>
94                        <br />
95                        <br />
96                        <a href="${createLink(action:'changePassword')}">Change Password</a>
97                        <br />
98                        <br />
99                        <a href="${createLink(action:'changeSessionTimeout')}">Change Session Timeout</a>
100                    </richui:tabContent>
101<!-- End Options tab -->
102
103<!-- About tab -->
104                    <richui:tabContent>
105                        <g:render template="/about" />
106                    </richui:tabContent>
107<!-- End About tab -->
108
109                </richui:tabContents>
110            </richui:tabView>
111           
112        </div>
113    </body>
114</html>
Note: See TracBrowser for help on using the repository browser.