[162] | 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 Department</title> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
| 11 | <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span> |
---|
| 12 | <span class="menuButton"><g:link class="list" action="list">Department List</g:link></span> |
---|
| 13 | <span class="menuButton"><g:link class="create" action="create">New Department</g:link></span> |
---|
| 14 | </div> |
---|
| 15 | <div class="body"> |
---|
| 16 | <h1>Show Department</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:departmentInstance, field:'id')}</td> |
---|
| 29 | |
---|
| 30 | </tr> |
---|
| 31 | |
---|
| 32 | <tr class="prop"> |
---|
[164] | 33 | <td valign="top" class="name">Name:</td> |
---|
[162] | 34 | |
---|
[164] | 35 | <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'name')}</td> |
---|
[162] | 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:departmentInstance, field:'description')}</td> |
---|
| 43 | |
---|
| 44 | </tr> |
---|
| 45 | |
---|
| 46 | <tr class="prop"> |
---|
[164] | 47 | <td valign="top" class="name">Cost Code:</td> |
---|
| 48 | |
---|
| 49 | <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'costCode')}</td> |
---|
| 50 | |
---|
| 51 | </tr> |
---|
| 52 | |
---|
| 53 | <tr class="prop"> |
---|
[162] | 54 | <td valign="top" class="name">Is Active:</td> |
---|
| 55 | |
---|
| 56 | <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'isActive')}</td> |
---|
| 57 | |
---|
| 58 | </tr> |
---|
| 59 | |
---|
| 60 | <tr class="prop"> |
---|
[164] | 61 | <td valign="top" class="name">Persons:</td> |
---|
[162] | 62 | |
---|
[164] | 63 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 64 | <ul> |
---|
| 65 | <g:each var="p" in="${departmentInstance.persons}"> |
---|
| 66 | <li><g:link controller="person" action="show" id="${p.id}">${p?.encodeAsHTML()}</g:link></li> |
---|
| 67 | </g:each> |
---|
| 68 | </ul> |
---|
| 69 | </td> |
---|
[162] | 70 | |
---|
| 71 | </tr> |
---|
| 72 | |
---|
| 73 | <tr class="prop"> |
---|
| 74 | <td valign="top" class="name">System Sections:</td> |
---|
| 75 | |
---|
| 76 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 77 | <ul> |
---|
| 78 | <g:each var="s" in="${departmentInstance.systemSections}"> |
---|
| 79 | <li><g:link controller="systemSection" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> |
---|
| 80 | </g:each> |
---|
| 81 | </ul> |
---|
| 82 | </td> |
---|
| 83 | |
---|
| 84 | </tr> |
---|
| 85 | |
---|
| 86 | </tbody> |
---|
| 87 | </table> |
---|
| 88 | </div> |
---|
| 89 | <div class="buttons"> |
---|
| 90 | <g:form> |
---|
| 91 | <input type="hidden" name="id" value="${departmentInstance?.id}" /> |
---|
| 92 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
| 93 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 94 | </g:form> |
---|
| 95 | </div> |
---|
| 96 | </div> |
---|
| 97 | </body> |
---|
| 98 | </html> |
---|