Last change
on this file since 910 was
178,
checked in by gav, 15 years ago
|
Resolve ticket #12 again.
Turn query cache on again since this did not resolve the problem.
Implement fix as per http://jira.codehaus.org/browse/GRAILS-5111, add flush:true to save.
Adjust templates to include above and remove home url.
Re-generate all non detailed views and controllers.
Manually add flush:true and remove home url to detailed views and controllers.
|
File size:
2.9 KB
|
Rev | Line | |
---|
[118] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
[122] | 7 | <title>Show Period</title> |
---|
[118] | 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[122] | 11 | <span class="menuButton"><g:link class="list" action="list">Period List</g:link></span> |
---|
| 12 | <span class="menuButton"><g:link class="create" action="create">New Period</g:link></span> |
---|
[118] | 13 | </div> |
---|
| 14 | <div class="body"> |
---|
[122] | 15 | <h1>Show Period</h1> |
---|
[118] | 16 | <g:if test="${flash.message}"> |
---|
| 17 | <div class="message">${flash.message}</div> |
---|
| 18 | </g:if> |
---|
| 19 | <div class="dialog"> |
---|
| 20 | <table> |
---|
| 21 | <tbody> |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | <tr class="prop"> |
---|
| 25 | <td valign="top" class="name">Id:</td> |
---|
| 26 | |
---|
[122] | 27 | <td valign="top" class="value">${fieldValue(bean:periodInstance, field:'id')}</td> |
---|
[118] | 28 | |
---|
| 29 | </tr> |
---|
| 30 | |
---|
| 31 | <tr class="prop"> |
---|
[122] | 32 | <td valign="top" class="name">Is Active:</td> |
---|
[118] | 33 | |
---|
[122] | 34 | <td valign="top" class="value">${fieldValue(bean:periodInstance, field:'isActive')}</td> |
---|
[118] | 35 | |
---|
| 36 | </tr> |
---|
| 37 | |
---|
| 38 | <tr class="prop"> |
---|
[122] | 39 | <td valign="top" class="name">Period:</td> |
---|
[118] | 40 | |
---|
[122] | 41 | <td valign="top" class="value">${fieldValue(bean:periodInstance, field:'period')}</td> |
---|
[118] | 42 | |
---|
| 43 | </tr> |
---|
| 44 | |
---|
| 45 | <tr class="prop"> |
---|
[134] | 46 | <td valign="top" class="name">Task Recurring Schedules:</td> |
---|
[118] | 47 | |
---|
| 48 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 49 | <ul> |
---|
[134] | 50 | <g:each var="t" in="${periodInstance.taskRecurringSchedules}"> |
---|
| 51 | <li><g:link controller="taskRecurringSchedule" action="show" id="${t.id}">${t?.encodeAsHTML()}</g:link></li> |
---|
[118] | 52 | </g:each> |
---|
| 53 | </ul> |
---|
| 54 | </td> |
---|
| 55 | |
---|
| 56 | </tr> |
---|
| 57 | |
---|
| 58 | </tbody> |
---|
| 59 | </table> |
---|
| 60 | </div> |
---|
| 61 | <div class="buttons"> |
---|
| 62 | <g:form> |
---|
[122] | 63 | <input type="hidden" name="id" value="${periodInstance?.id}" /> |
---|
[118] | 64 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
| 65 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 66 | </g:form> |
---|
| 67 | </div> |
---|
| 68 | </div> |
---|
| 69 | </body> |
---|
| 70 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.