| 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> | 
|---|
| 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 |                             </td> | 
|---|
| 27 |                         </tr> | 
|---|
| 28 |  | 
|---|
| 29 |                         <tr class="prop"> | 
|---|
| 30 |                             <td valign="top" class="name"> | 
|---|
| 31 |                                 <label>Budget:</label> | 
|---|
| 32 |                             </td> | 
|---|
| 33 |                             <td valign="top" class="value"> | 
|---|
| 34 |                                 <g:link controller="taskDetailed" | 
|---|
| 35 |                                                 action="budget" | 
|---|
| 36 |                                                 params="[quickSearch: 'budgetPlanned']"> | 
|---|
| 37 |                                                 Planned Tasks | 
|---|
| 38 |                                 </g:link> | 
|---|
| 39 |                                 <br /> | 
|---|
| 40 |                                 <g:link controller="taskDetailed"  | 
|---|
| 41 |                                                 action="budget" | 
|---|
| 42 |                                                 params="[quickSearch: 'budgetUnplanned']"> | 
|---|
| 43 |                                                 Unplanned Tasks | 
|---|
| 44 |                                 </g:link> | 
|---|
| 45 |                             </td> | 
|---|
| 46 |                         </tr> | 
|---|
| 47 |  | 
|---|
| 48 |                         <tr class="prop"> | 
|---|
| 49 |                             <td valign="top" class="name"> | 
|---|
| 50 |                                 <label>Entity Relationship Diagram:</label> | 
|---|
| 51 |                             </td> | 
|---|
| 52 |                             <td valign="top" class="value"> | 
|---|
| 53 |  | 
|---|
| 54 |                                 <a href="${createLink(controller:'classDiagram', action:'model', params:[outputFormat: 'pdf', skin: 'classicSpaced', showMethods: 'false', autoUpdate: 'false'])}">PDF</a> | 
|---|
| 55 |                                 <br /> | 
|---|
| 56 |                                 <a href="${createLink(controller:'classDiagram', action:'legend', target:'_blank')}">Legend</a> | 
|---|
| 57 |                                 <br /> | 
|---|
| 58 |                                 <a href="${createLink(controller:'classDiagram', action:'show')}">Interactive.</a> | 
|---|
| 59 |                             </td> | 
|---|
| 60 |                         </tr> | 
|---|
| 61 |  | 
|---|
| 62 |                     </tbody> | 
|---|
| 63 |                 </table> | 
|---|
| 64 |             </div> <!--End dialog--> | 
|---|
| 65 |         </div> <!--End body--> | 
|---|
| 66 |     </body> | 
|---|
| 67 | </html> | 
|---|