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

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

Work on TaskSearchService?.

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