Last change
on this file since 148 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.
|
File size:
3.0 KB
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | <html> |
---|
4 | <head> |
---|
5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
6 | <meta name="layout" content="main" /> |
---|
7 | <title>Show Period</title> |
---|
8 | </head> |
---|
9 | <body> |
---|
10 | <div class="nav"> |
---|
11 | <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span> |
---|
12 | <span class="menuButton"><g:link class="list" action="list">Period List</g:link></span> |
---|
13 | <span class="menuButton"><g:link class="create" action="create">New Period</g:link></span> |
---|
14 | </div> |
---|
15 | <div class="body"> |
---|
16 | <h1>Show Period</h1> |
---|
17 | <g:if test="${flash.message}"> |
---|
18 | <div class="message">${flash.message}</div> |
---|
19 | </g:if> |
---|
20 | <div class="dialog"> |
---|
21 | <table> |
---|
22 | <tbody> |
---|
23 | |
---|
24 | |
---|
25 | <tr class="prop"> |
---|
26 | <td valign="top" class="name">Id:</td> |
---|
27 | |
---|
28 | <td valign="top" class="value">${fieldValue(bean:periodInstance, field:'id')}</td> |
---|
29 | |
---|
30 | </tr> |
---|
31 | |
---|
32 | <tr class="prop"> |
---|
33 | <td valign="top" class="name">Is Active:</td> |
---|
34 | |
---|
35 | <td valign="top" class="value">${fieldValue(bean:periodInstance, field:'isActive')}</td> |
---|
36 | |
---|
37 | </tr> |
---|
38 | |
---|
39 | <tr class="prop"> |
---|
40 | <td valign="top" class="name">Period:</td> |
---|
41 | |
---|
42 | <td valign="top" class="value">${fieldValue(bean:periodInstance, field:'period')}</td> |
---|
43 | |
---|
44 | </tr> |
---|
45 | |
---|
46 | <tr class="prop"> |
---|
47 | <td valign="top" class="name">Task Recurring Schedules:</td> |
---|
48 | |
---|
49 | <td valign="top" style="text-align:left;" class="value"> |
---|
50 | <ul> |
---|
51 | <g:each var="t" in="${periodInstance.taskRecurringSchedules}"> |
---|
52 | <li><g:link controller="taskRecurringSchedule" action="show" id="${t.id}">${t?.encodeAsHTML()}</g:link></li> |
---|
53 | </g:each> |
---|
54 | </ul> |
---|
55 | </td> |
---|
56 | |
---|
57 | </tr> |
---|
58 | |
---|
59 | </tbody> |
---|
60 | </table> |
---|
61 | </div> |
---|
62 | <div class="buttons"> |
---|
63 | <g:form> |
---|
64 | <input type="hidden" name="id" value="${periodInstance?.id}" /> |
---|
65 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
66 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
67 | </g:form> |
---|
68 | </div> |
---|
69 | </div> |
---|
70 | </body> |
---|
71 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.