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