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