[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" /> |
---|
[273] | 7 | <title>Show Section</title> |
---|
[118] | 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[273] | 11 | <span class="menuButton"><g:link class="list" action="list">Section List</g:link></span> |
---|
| 12 | <span class="menuButton"><g:link class="create" action="create">New Section</g:link></span> |
---|
[118] | 13 | </div> |
---|
| 14 | <div class="body"> |
---|
[273] | 15 | <h1>Show Section</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 | |
---|
[273] | 27 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'id')}</td> |
---|
[118] | 28 | |
---|
| 29 | </tr> |
---|
| 30 | |
---|
| 31 | <tr class="prop"> |
---|
[162] | 32 | <td valign="top" class="name">Name:</td> |
---|
[118] | 33 | |
---|
[273] | 34 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'name')}</td> |
---|
[118] | 35 | |
---|
| 36 | </tr> |
---|
| 37 | |
---|
| 38 | <tr class="prop"> |
---|
| 39 | <td valign="top" class="name">Description:</td> |
---|
| 40 | |
---|
[273] | 41 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'description')}</td> |
---|
[118] | 42 | |
---|
| 43 | </tr> |
---|
| 44 | |
---|
| 45 | <tr class="prop"> |
---|
[273] | 46 | <td valign="top" class="name">Is Active:</td> |
---|
[162] | 47 | |
---|
[273] | 48 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'isActive')}</td> |
---|
[162] | 49 | |
---|
| 50 | </tr> |
---|
| 51 | |
---|
| 52 | <tr class="prop"> |
---|
[273] | 53 | <td valign="top" class="name">Assets:</td> |
---|
[162] | 54 | |
---|
[273] | 55 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 56 | <ul> |
---|
| 57 | <g:each var="a" in="${sectionInstance.assets}"> |
---|
| 58 | <li><g:link controller="asset" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li> |
---|
| 59 | </g:each> |
---|
| 60 | </ul> |
---|
| 61 | </td> |
---|
[162] | 62 | |
---|
| 63 | </tr> |
---|
| 64 | |
---|
| 65 | <tr class="prop"> |
---|
[273] | 66 | <td valign="top" class="name">Department:</td> |
---|
[162] | 67 | |
---|
[273] | 68 | <td valign="top" class="value"><g:link controller="department" action="show" id="${sectionInstance?.department?.id}">${sectionInstance?.department?.encodeAsHTML()}</g:link></td> |
---|
[162] | 69 | |
---|
| 70 | </tr> |
---|
| 71 | |
---|
| 72 | <tr class="prop"> |
---|
[273] | 73 | <td valign="top" class="name">Maintenance Actions:</td> |
---|
[118] | 74 | |
---|
| 75 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 76 | <ul> |
---|
[273] | 77 | <g:each var="m" in="${sectionInstance.maintenanceActions}"> |
---|
| 78 | <li><g:link controller="maintenanceAction" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li> |
---|
[118] | 79 | </g:each> |
---|
| 80 | </ul> |
---|
| 81 | </td> |
---|
| 82 | |
---|
| 83 | </tr> |
---|
| 84 | |
---|
| 85 | <tr class="prop"> |
---|
[273] | 86 | <td valign="top" class="name">Section Extended Attributes:</td> |
---|
[118] | 87 | |
---|
[162] | 88 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 89 | <ul> |
---|
[273] | 90 | <g:each var="s" in="${sectionInstance.sectionExtendedAttributes}"> |
---|
| 91 | <li><g:link controller="sectionExtendedAttribute" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> |
---|
[162] | 92 | </g:each> |
---|
| 93 | </ul> |
---|
| 94 | </td> |
---|
[118] | 95 | |
---|
| 96 | </tr> |
---|
| 97 | |
---|
[273] | 98 | <tr class="prop"> |
---|
| 99 | <td valign="top" class="name">Site:</td> |
---|
| 100 | |
---|
| 101 | <td valign="top" class="value"><g:link controller="site" action="show" id="${sectionInstance?.site?.id}">${sectionInstance?.site?.encodeAsHTML()}</g:link></td> |
---|
| 102 | |
---|
| 103 | </tr> |
---|
| 104 | |
---|
[118] | 105 | </tbody> |
---|
| 106 | </table> |
---|
| 107 | </div> |
---|
| 108 | <div class="buttons"> |
---|
| 109 | <g:form> |
---|
[273] | 110 | <input type="hidden" name="id" value="${sectionInstance?.id}" /> |
---|
[118] | 111 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
| 112 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 113 | </g:form> |
---|
| 114 | </div> |
---|
| 115 | </div> |
---|
| 116 | </body> |
---|
| 117 | </html> |
---|