|
Last change
on this file since 325 was
242,
checked in by gav, 16 years ago
|
|
Re-implement AssignedGroups along side AssignedPersons manually taking the good stuff from r240.
As per revised ticket #37.
|
|
File size:
2.4 KB
|
| Rev | Line | |
|---|
| [242] | 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>AssignedGroup List</title> |
|---|
| 8 | </head> |
|---|
| 9 | <body> |
|---|
| 10 | <div class="nav"> |
|---|
| 11 | <span class="menuButton"><g:link class="create" action="create">New AssignedGroup</g:link></span> |
|---|
| 12 | </div> |
|---|
| 13 | <div class="body"> |
|---|
| 14 | <h1>AssignedGroup List</h1> |
|---|
| 15 | <g:if test="${flash.message}"> |
|---|
| 16 | <div class="message">${flash.message}</div> |
|---|
| 17 | </g:if> |
|---|
| 18 | <div class="list"> |
|---|
| 19 | <table> |
|---|
| 20 | <thead> |
|---|
| 21 | <tr> |
|---|
| 22 | |
|---|
| 23 | <g:sortableColumn property="id" title="Id" /> |
|---|
| 24 | |
|---|
| 25 | <th>Task</th> |
|---|
| 26 | |
|---|
| 27 | <th>Person Group</th> |
|---|
| 28 | |
|---|
| 29 | <g:sortableColumn property="estimatedHour" title="Estimated Hour" /> |
|---|
| 30 | |
|---|
| 31 | <g:sortableColumn property="estimatedMinute" title="Estimated Minute" /> |
|---|
| 32 | |
|---|
| 33 | </tr> |
|---|
| 34 | </thead> |
|---|
| 35 | <tbody> |
|---|
| 36 | <g:each in="${assignedGroupInstanceList}" status="i" var="assignedGroupInstance"> |
|---|
| 37 | <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> |
|---|
| 38 | |
|---|
| 39 | <td><g:link action="show" id="${assignedGroupInstance.id}">${fieldValue(bean:assignedGroupInstance, field:'id')}</g:link></td> |
|---|
| 40 | |
|---|
| 41 | <td>${fieldValue(bean:assignedGroupInstance, field:'task')}</td> |
|---|
| 42 | |
|---|
| 43 | <td>${fieldValue(bean:assignedGroupInstance, field:'personGroup')}</td> |
|---|
| 44 | |
|---|
| 45 | <td>${fieldValue(bean:assignedGroupInstance, field:'estimatedHour')}</td> |
|---|
| 46 | |
|---|
| 47 | <td>${fieldValue(bean:assignedGroupInstance, field:'estimatedMinute')}</td> |
|---|
| 48 | |
|---|
| 49 | </tr> |
|---|
| 50 | </g:each> |
|---|
| 51 | </tbody> |
|---|
| 52 | </table> |
|---|
| 53 | </div> |
|---|
| 54 | <div class="paginateButtons"> |
|---|
| 55 | <g:paginate total="${assignedGroupInstanceTotal}" /> |
|---|
| 56 | </div> |
|---|
| 57 | </div> |
|---|
| 58 | </body> |
|---|
| 59 | </html> |
|---|
Note: See
TracBrowser
for help on using the repository browser.