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="[quickSearch: 'searchMyTodays']"> |
---|
50 | Today's |
---|
51 | </g:link> |
---|
52 | <br /> |
---|
53 | <g:link controller="taskDetailed" |
---|
54 | action="search" |
---|
55 | params="[quickSearch: 'searchMyInTheLastWeek']"> |
---|
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="searchCalendar" |
---|
68 | params="[quickSearch: 'searchInTheLastWeek']"> |
---|
69 | Calendar |
---|
70 | </g:link> |
---|
71 | </td> |
---|
72 | </tr> |
---|
73 | |
---|
74 | <!-- More Quick Links: |
---|
75 | Open Tasks |
---|
76 | Closed Tasks |
---|
77 | Tasks I lead. |
---|
78 | Week calender |
---|
79 | Recent |
---|
80 | Today's Entries |
---|
81 | My Entries. |
---|
82 | Date ranges--> |
---|
83 | |
---|
84 | </tbody> |
---|
85 | </table> |
---|
86 | </div> <!--End dialog--> |
---|
87 | </richui:tabContent> |
---|
88 | <!-- End Tasks tab --> |
---|
89 | |
---|
90 | <!-- Reports tab --> |
---|
91 | <richui:tabContent> |
---|
92 | <br /> |
---|
93 | <br /> |
---|
94 | <div class="dialog"> |
---|
95 | <table> |
---|
96 | <tbody> |
---|
97 | |
---|
98 | <tr class="prop"> |
---|
99 | <td valign="top" class="name"> |
---|
100 | <label>Static reports:</label> |
---|
101 | </td> |
---|
102 | <!-- <td valign="top" class="value"> |
---|
103 | <a href="${createLink(action:'changePassword')}"> Password</a> |
---|
104 | <br /> |
---|
105 | <a href="${createLink(action:'changeSessionTimeout')}">Session Timeout</a> |
---|
106 | </td>--> |
---|
107 | </tr> |
---|
108 | |
---|
109 | </tbody> |
---|
110 | </table> |
---|
111 | </div> <!--End dialog--> |
---|
112 | </richui:tabContent> |
---|
113 | <!-- End Reports tab --> |
---|
114 | |
---|
115 | <!-- Options tab --> |
---|
116 | <richui:tabContent> |
---|
117 | <br /> |
---|
118 | <br /> |
---|
119 | <div class="dialog"> |
---|
120 | <table> |
---|
121 | <tbody> |
---|
122 | |
---|
123 | <tr class="prop"> |
---|
124 | <td valign="top" class="name"> |
---|
125 | <label>Change:</label> |
---|
126 | </td> |
---|
127 | <td valign="top" class="value"> |
---|
128 | <a href="${createLink(action:'changePassword')}"> Password</a> |
---|
129 | <br /> |
---|
130 | <a href="${createLink(action:'changeSessionTimeout')}">Session Timeout</a> |
---|
131 | </td> |
---|
132 | </tr> |
---|
133 | |
---|
134 | </tbody> |
---|
135 | </table> |
---|
136 | </div> <!--End dialog--> |
---|
137 | </richui:tabContent> |
---|
138 | <!-- End Options tab --> |
---|
139 | |
---|
140 | <!-- About tab --> |
---|
141 | <richui:tabContent> |
---|
142 | <g:render template="/about" /> |
---|
143 | </richui:tabContent> |
---|
144 | <!-- End About tab --> |
---|
145 | |
---|
146 | </richui:tabContents> |
---|
147 | </richui:tabView> |
---|
148 | |
---|
149 | </div> <!--End body--> |
---|
150 | </body> |
---|
151 | </html> |
---|