[91] | 1 | <html> |
---|
| 2 | <head> |
---|
| 3 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 4 | <meta name="layout" content="main" /> |
---|
| 5 | <title>Admin</title> |
---|
[139] | 6 | <nav:resources override="true"/> |
---|
[91] | 7 | </head> |
---|
| 8 | <body> |
---|
| 9 | <div class="nav"> |
---|
[139] | 10 | <nav:renderSubItems group="nav"/> |
---|
[91] | 11 | </div> |
---|
| 12 | <div class="body"> |
---|
[110] | 13 | <g:if test="${flash.message}"> |
---|
| 14 | <div class="message">${flash.message}</div> |
---|
| 15 | </g:if> |
---|
[147] | 16 | <div class="dialog"> |
---|
| 17 | <table> |
---|
| 18 | <tbody> |
---|
| 19 | |
---|
| 20 | <tr class="prop"> |
---|
| 21 | <td valign="top" class="name"> |
---|
| 22 | <label>Manage:</label> |
---|
| 23 | </td> |
---|
| 24 | <td valign="top" class="value"> |
---|
| 25 | <a href="${createLink(controller:'person', action:'list')}">Application users</a> |
---|
[560] | 26 | <br /> |
---|
| 27 | <a href="${createLink(controller:'personGroupDetailed', action:'list')}">Assigned Groups</a> |
---|
| 28 | <br /> |
---|
| 29 | <a href="${createLink(controller:'departmentDetailed', action:'list')}">Departments</a> |
---|
| 30 | <br /> |
---|
| 31 | <a href="${createLink(controller:'inventoryLocationDetailed', action:'list')}">Inventory Locations</a> |
---|
| 32 | <br /> |
---|
| 33 | <a href="${createLink(controller:'inventoryGroupDetailed', action:'list')}">Inventory Groups</a> |
---|
| 34 | <br /> |
---|
| 35 | <a href="${createLink(controller:'inventoryStoreDetailed', action:'list')}">Inventory Stores</a> |
---|
| 36 | <br /> |
---|
| 37 | <a href="${createLink(controller:'maintenancePolicyDetailed', action:'list')}">Maintenance Policies</a> |
---|
| 38 | <br /> |
---|
| 39 | <a href="${createLink(controller:'manufacturerDetailed', action:'list')}">Manufacturers</a> |
---|
| 40 | <br /> |
---|
| 41 | <a href="${createLink(controller:'productionReferenceDetailed', action:'list')}">Production Reference</a> |
---|
| 42 | <br /> |
---|
| 43 | <a href="${createLink(controller:'supplierDetailed', action:'list')}">Suppliers</a> |
---|
| 44 | <br /> |
---|
| 45 | <a href="${createLink(controller:'taskGroupDetailed', action:'list')}">Task Groups</a> |
---|
| 46 | <br /> |
---|
| 47 | <a href="${createLink(controller:'taskProcedureDetailed', action:'list')}">Task Procedures</a> |
---|
| 48 | <br /> |
---|
| 49 | <a href="${createLink(controller:'taskRecurringScheduleDetailed', action:'list')}">Task Recurring Schedules</a> |
---|
| 50 | <br /> |
---|
| 51 | <a href="${createLink(controller:'unitOfMeasureDetailed', action:'list')}">Unit Of Measure</a> |
---|
| 52 | <br /> |
---|
[147] | 53 | </td> |
---|
| 54 | </tr> |
---|
| 55 | |
---|
| 56 | <tr class="prop"> |
---|
| 57 | <td valign="top" class="name"> |
---|
[165] | 58 | <label>Budget:</label> |
---|
| 59 | </td> |
---|
| 60 | <td valign="top" class="value"> |
---|
| 61 | <g:link controller="taskDetailed" |
---|
[476] | 62 | action="search" |
---|
[165] | 63 | params="[quickSearch: 'budgetPlanned']"> |
---|
| 64 | Planned Tasks |
---|
| 65 | </g:link> |
---|
| 66 | <br /> |
---|
| 67 | <g:link controller="taskDetailed" |
---|
[476] | 68 | action="search" |
---|
[165] | 69 | params="[quickSearch: 'budgetUnplanned']"> |
---|
| 70 | Unplanned Tasks |
---|
| 71 | </g:link> |
---|
| 72 | </td> |
---|
| 73 | </tr> |
---|
| 74 | |
---|
| 75 | <tr class="prop"> |
---|
| 76 | <td valign="top" class="name"> |
---|
[562] | 77 | <label>Search Index:</label> |
---|
| 78 | </td> |
---|
| 79 | <td valign="top" class="value"> |
---|
| 80 | <g:link action="rebuildTextSearchIndex"> |
---|
| 81 | Rebuild |
---|
| 82 | </g:link> - Reindex the entire text search index. |
---|
| 83 | <br /> |
---|
| 84 | </td> |
---|
| 85 | </tr> |
---|
| 86 | |
---|
| 87 | <tr class="prop"> |
---|
| 88 | <td valign="top" class="name"> |
---|
[147] | 89 | <label>Entity Relationship Diagram:</label> |
---|
| 90 | </td> |
---|
| 91 | <td valign="top" class="value"> |
---|
| 92 | |
---|
| 93 | <a href="${createLink(controller:'classDiagram', action:'model', params:[outputFormat: 'pdf', skin: 'classicSpaced', showMethods: 'false', autoUpdate: 'false'])}">PDF</a> |
---|
| 94 | <br /> |
---|
| 95 | <a href="${createLink(controller:'classDiagram', action:'legend', target:'_blank')}">Legend</a> |
---|
| 96 | <br /> |
---|
| 97 | <a href="${createLink(controller:'classDiagram', action:'show')}">Interactive.</a> |
---|
| 98 | </td> |
---|
| 99 | </tr> |
---|
| 100 | |
---|
| 101 | </tbody> |
---|
| 102 | </table> |
---|
| 103 | </div> <!--End dialog--> |
---|
| 104 | </div> <!--End body--> |
---|
[91] | 105 | </body> |
---|
| 106 | </html> |
---|