1 | <html> |
---|
2 | <head> |
---|
3 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
4 | <meta name="layout" content="main" /> |
---|
5 | <title>Manager</title> |
---|
6 | <nav:resources override="true"/> |
---|
7 | </head> |
---|
8 | <body> |
---|
9 | <div class="nav"> |
---|
10 | <nav:renderSubItems group="nav"/> |
---|
11 | </div> |
---|
12 | <div class="body"> |
---|
13 | <g:if test="${flash.message}"> |
---|
14 | <div class="message">${flash.message}</div> |
---|
15 | </g:if> |
---|
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> |
---|
26 | <br /> |
---|
27 | <a href="${createLink(controller:'personGroupDetailed', action:'list')}">Assigned Groups</a> |
---|
28 | <br /> |
---|
29 | <a href="${createLink(controller:'costCodeDetailed', action:'list')}">Cost Codes</a> |
---|
30 | <br /> |
---|
31 | <a href="${createLink(controller:'departmentDetailed', action:'list')}">Departments</a> |
---|
32 | <br /> |
---|
33 | <a href="${createLink(controller:'inventoryLocationDetailed', action:'list')}">Inventory Locations</a> |
---|
34 | <br /> |
---|
35 | <a href="${createLink(controller:'inventoryGroupDetailed', action:'list')}">Inventory Groups</a> |
---|
36 | <br /> |
---|
37 | <a href="${createLink(controller:'inventoryStoreDetailed', action:'list')}">Inventory Stores</a> |
---|
38 | <br /> |
---|
39 | <a href="${createLink(controller:'maintenancePolicyDetailed', action:'list')}">Maintenance Policies</a> |
---|
40 | <br /> |
---|
41 | <a href="${createLink(controller:'purchasingGroupDetailed', action:'list')}">Purchasing Groups</a> |
---|
42 | <br /> |
---|
43 | <a href="${createLink(controller:'productionReferenceDetailed', action:'list')}">Production Reference</a> |
---|
44 | <br /> |
---|
45 | <a href="${createLink(controller:'supplierDetailed', action:'list')}">Suppliers</a> |
---|
46 | <br /> |
---|
47 | <a href="${createLink(controller:'taskGroupDetailed', action:'list')}">Task Groups</a> |
---|
48 | <br /> |
---|
49 | <a href="${createLink(controller:'taskProcedureDetailed', action:'list')}">Task Procedures</a> |
---|
50 | <br /> |
---|
51 | <a href="${createLink(controller:'taskRecurringScheduleDetailed', action:'list')}">Task Recurring Schedules</a> |
---|
52 | <br /> |
---|
53 | <a href="${createLink(controller:'unitOfMeasureDetailed', action:'list')}">Unit Of Measure</a> |
---|
54 | <br /> |
---|
55 | </td> |
---|
56 | </tr> |
---|
57 | |
---|
58 | <tr class="prop"> |
---|
59 | <td valign="top" class="name"> |
---|
60 | <label>Application:</label> |
---|
61 | </td> |
---|
62 | <td valign="top" class="value"> |
---|
63 | <g:link action="appLog"> |
---|
64 | View |
---|
65 | </g:link> - The application log file. |
---|
66 | <br /> |
---|
67 | <g:link action="rebuildTextSearchIndex"> |
---|
68 | Rebuild |
---|
69 | </g:link> - Rebuild the text search index. |
---|
70 | <br /> |
---|
71 | </td> |
---|
72 | </tr> |
---|
73 | |
---|
74 | </tbody> |
---|
75 | </table> |
---|
76 | </div> <!--End dialog--> |
---|
77 | </div> <!--End body--> |
---|
78 | </body> |
---|
79 | </html> |
---|