Last change
on this file since 867 was
867,
checked in by gav, 14 years ago
|
Update listSubTasks view to use list template.
|
File size:
1.3 KB
|
Rev | Line | |
---|
[134] | 1 | <html> |
---|
| 2 | <head> |
---|
| 3 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 4 | <meta name="layout" content="main" /> |
---|
| 5 | <title>Task List</title> |
---|
[139] | 6 | <nav:resources override="true"/> |
---|
[134] | 7 | </head> |
---|
| 8 | <body> |
---|
| 9 | <div class="nav"> |
---|
[139] | 10 | <nav:renderSubItems group="nav"/> |
---|
[134] | 11 | </div> |
---|
| 12 | <div class="body"> |
---|
[630] | 13 | |
---|
| 14 | <h1>Sub Tasks for: |
---|
| 15 | <g:link action="show" id="${parentTaskInstance.id}" params="[showTab:'showSubTasksTab']"> |
---|
| 16 | Task #${parentTaskInstance.id} |
---|
| 17 | </g:link> |
---|
| 18 | </h1> |
---|
| 19 | ${parentTaskInstance.description} |
---|
| 20 | |
---|
[134] | 21 | <g:if test="${flash.message}"> |
---|
| 22 | <div class="message">${flash.message}</div> |
---|
| 23 | </g:if> |
---|
[196] | 24 | |
---|
| 25 | <div class="paginateButtons"> |
---|
[630] | 26 | Results: ${taskInstanceList.size()} / ${taskInstanceTotal} |
---|
[196] | 27 | </div> |
---|
[630] | 28 | <div class="paginateButtons"> |
---|
| 29 | <g:paginate action="listSubTasks" id="${parentTaskInstance?.id}" total="${taskInstanceTotal}" /> |
---|
| 30 | </div> |
---|
[134] | 31 | |
---|
[867] | 32 | <g:render template="list" /> |
---|
[134] | 33 | |
---|
| 34 | <div class="paginateButtons"> |
---|
| 35 | <g:paginate action="listSubTasks" id="${parentTaskInstance?.id}" total="${taskInstanceTotal}" /> |
---|
| 36 | </div> |
---|
| 37 | </div> |
---|
| 38 | </body> |
---|
| 39 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.