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