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

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

Busy adding TaskSearchService?.

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