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

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

Install Navigation plugin, work on navigation and hopefully fixed a few more IE vs Firefox CSS issues.
New skin for class-diagram plugin.
Adjust security config to suite.
Replace home.gsp with start.gsp, remove options.gsp and acknowledgements.gsp as they are now on start.gsp tabs.
Create search pages for Tasks, Assets and Inventory.
Change suggested login to manager.
Change all date formats to format="EEE, dd-MMM-yyyy".

File size: 2.3 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                        Prepared quick links
39                        <br />
40                        <br />
41                    </richui:tabContent>
42<!-- End Tasks tab -->
43
44<!-- Reports tab -->
45                    <richui:tabContent>
46                        <br />
47                        <br />
48                        Static reports
49                    </richui:tabContent>
50<!-- End Reports tab  -->
51
52<!-- Options tab -->
53                    <richui:tabContent>
54                        <br />
55                        <br />
56                        <a href="${createLink(action:'changePassword')}">Change Password</a>
57                        <br />
58                        <br />
59                        <a href="${createLink(action:'changeSessionTimeout')}">Change Session Timeout</a>
60                    </richui:tabContent>
61<!-- End Options tab -->
62
63<!-- About tab -->
64                    <richui:tabContent>
65                        <g:render template="/about" />
66                    </richui:tabContent>
67<!-- End About tab -->
68
69                </richui:tabContents>
70            </richui:tabView>
71           
72        </div>
73    </body>
74</html>
Note: See TracBrowser for help on using the repository browser.