[122] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
[131] | 7 | <title>TaskRecurringSchedule List</title> |
---|
[122] | 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[131] | 11 | <span class="menuButton"><g:link class="create" action="create">New TaskRecurringSchedule</g:link></span> |
---|
[122] | 12 | </div> |
---|
| 13 | <div class="body"> |
---|
[131] | 14 | <h1>TaskRecurringSchedule List</h1> |
---|
[122] | 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 | |
---|
[135] | 25 | <g:sortableColumn property="taskId" title="Recurring Schedule for Task" /> |
---|
[134] | 26 | |
---|
[135] | 27 | <g:sortableColumn property="recurEvery" title="Recur Every" /> |
---|
| 28 | |
---|
[137] | 29 | <g:sortableColumn property="recurPeriod" title="Recur Period" /> |
---|
[135] | 30 | |
---|
[199] | 31 | <g:sortableColumn property="enabled" title="Enabled" /> |
---|
[135] | 32 | |
---|
| 33 | <th></th> |
---|
[122] | 34 | |
---|
| 35 | </tr> |
---|
| 36 | </thead> |
---|
| 37 | <tbody> |
---|
[131] | 38 | <g:each in="${taskRecurringScheduleInstanceList}" status="i" var="taskRecurringScheduleInstance"> |
---|
[498] | 39 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> |
---|
[135] | 40 | |
---|
[122] | 41 | |
---|
[498] | 42 | <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'> |
---|
| 43 | ${fieldValue(bean:taskRecurringScheduleInstance, field:'id')} |
---|
| 44 | </td> |
---|
[122] | 45 | |
---|
[498] | 46 | <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'> |
---|
| 47 | ${fieldValue(bean:taskRecurringScheduleInstance, field:'task')} |
---|
| 48 | </td> |
---|
[122] | 49 | |
---|
[498] | 50 | <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'> |
---|
| 51 | ${fieldValue(bean:taskRecurringScheduleInstance, field:'recurEvery')} |
---|
| 52 | </td> |
---|
[122] | 53 | |
---|
[498] | 54 | <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'> |
---|
| 55 | ${fieldValue(bean:taskRecurringScheduleInstance, field:'recurPeriod')} |
---|
| 56 | </td> |
---|
[135] | 57 | |
---|
[498] | 58 | <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'> |
---|
| 59 | ${fieldValue(bean:taskRecurringScheduleInstance, field:'enabled')} |
---|
| 60 | </td> |
---|
[135] | 61 | |
---|
[498] | 62 | <td class="notClickable"> |
---|
[135] | 63 | <g:link action="show" id="${taskRecurringScheduleInstance.id}"> |
---|
[151] | 64 | <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" /> |
---|
[135] | 65 | </g:link> |
---|
| 66 | </td> |
---|
[122] | 67 | |
---|
| 68 | </tr> |
---|
| 69 | </g:each> |
---|
| 70 | </tbody> |
---|
| 71 | </table> |
---|
| 72 | </div> |
---|
| 73 | <div class="paginateButtons"> |
---|
[131] | 74 | <g:paginate total="${taskRecurringScheduleInstanceTotal}" /> |
---|
[122] | 75 | </div> |
---|
| 76 | </div> |
---|
| 77 | </body> |
---|
| 78 | </html> |
---|