source: trunk/grails-app/views/appCore/options.gsp @ 134

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

Add icons from famfamfam silk icons, add acknowledgement page to suite.
Adjust AssignedPerson? controller so that a task.id is required to create.
Move Add AssignedPerson? link up to TaskDetailed? show page.
Further improvements to taskDetailed show tabs.
Adjust TaskProcedureDetailed? controller to allow linking a Procedure to a task during creation.
Adjust TaskRecurringSchedule? to a one-to-one cascading relationship.
Modify CSS class duration to time and added icons.
Regenerate some pages.

  • Property svn:executable set to *
File size: 990 bytes
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>Options</title>
6    </head>
7    <body>
8        <div class="nav">
9            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
10        </div>
11        <div class="body">
12            <h1>Welcome to Options</h1>
13            <g:if test="${flash.message}">
14            <div class="message">${flash.message}</div>
15            </g:if>
16            <br/>
17            <div class="dialog">
18            <a href="${createLink(action:'changePassword')}">Change Password</a>
19            <br />
20            <br />
21            <a href="${createLink(action:'changeSessionTimeout')}">Change Session Timeout</a>
22            <br />
23            <br />
24            <a href="${createLink(action:'acknowledgements')}">Acknowledgements</a>
25            </div>
26        </div>
27    </body>
28</html>
Note: See TracBrowser for help on using the repository browser.