Last change
on this file since 468 was
363,
checked in by gav, 15 years ago
|
Detail MaintenancePolicy controller and views.
|
File size:
2.5 KB
|
Rev | Line | |
---|
[122] | 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 MaintenancePolicy</title> |
---|
[363] | 8 | <nav:resources override="true"/> |
---|
[122] | 9 | </head> |
---|
| 10 | <body> |
---|
| 11 | <div class="nav"> |
---|
[363] | 12 | <nav:renderSubItems group="navAlt"/> |
---|
[122] | 13 | </div> |
---|
| 14 | <div class="body"> |
---|
| 15 | <g:if test="${flash.message}"> |
---|
| 16 | <div class="message">${flash.message}</div> |
---|
| 17 | </g:if> |
---|
| 18 | <div class="dialog"> |
---|
| 19 | <table> |
---|
| 20 | <tbody> |
---|
| 21 | |
---|
| 22 | |
---|
| 23 | <tr class="prop"> |
---|
| 24 | <td valign="top" class="name">Id:</td> |
---|
| 25 | |
---|
| 26 | <td valign="top" class="value">${fieldValue(bean:maintenancePolicyInstance, field:'id')}</td> |
---|
| 27 | |
---|
| 28 | </tr> |
---|
| 29 | |
---|
| 30 | <tr class="prop"> |
---|
[268] | 31 | <td valign="top" class="name">Name:</td> |
---|
| 32 | |
---|
| 33 | <td valign="top" class="value">${fieldValue(bean:maintenancePolicyInstance, field:'name')}</td> |
---|
| 34 | |
---|
| 35 | </tr> |
---|
| 36 | |
---|
| 37 | <tr class="prop"> |
---|
[122] | 38 | <td valign="top" class="name">Description:</td> |
---|
| 39 | |
---|
| 40 | <td valign="top" class="value">${fieldValue(bean:maintenancePolicyInstance, field:'description')}</td> |
---|
| 41 | |
---|
| 42 | </tr> |
---|
| 43 | |
---|
| 44 | <tr class="prop"> |
---|
| 45 | <td valign="top" class="name">Is Active:</td> |
---|
| 46 | |
---|
| 47 | <td valign="top" class="value">${fieldValue(bean:maintenancePolicyInstance, field:'isActive')}</td> |
---|
| 48 | |
---|
| 49 | </tr> |
---|
| 50 | |
---|
| 51 | </tbody> |
---|
| 52 | </table> |
---|
| 53 | </div> |
---|
| 54 | <div class="buttons"> |
---|
| 55 | <g:form> |
---|
| 56 | <input type="hidden" name="id" value="${maintenancePolicyInstance?.id}" /> |
---|
| 57 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
| 58 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 59 | </g:form> |
---|
| 60 | </div> |
---|
| 61 | </div> |
---|
| 62 | </body> |
---|
| 63 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.