Changeset 445 for trunk/grails-app/views/taskRecurringScheduleDetailed
- Timestamp:
- Mar 16, 2010, 5:18:20 PM (15 years ago)
- Location:
- trunk/grails-app/views/taskRecurringScheduleDetailed
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskRecurringScheduleDetailed/create.gsp
r213 r445 81 81 </td> 82 82 </tr> 83 84 <tr class="prop"> 85 <td valign="top" class="name"> 86 <label for="maxSubTasks">Max Sub Tasks:</label> 87 </td> 88 <td valign="top" class="value" > 89 <input type="text" class="time ${hasErrors(bean:taskRecurringScheduleInstance,field:'maxSubTasks','errors')}" 90 id="maxSubTasks" name="maxSubTasks" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'maxSubTasks')}" /> 91 <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.maxSubTasks" /> 92 </td> 93 </tr> 94 95 <tr class="prop"> 96 <td valign="top" class="name"> 97 <label for="useTargetCompletionDate">Use Target Completion Date:</label> 98 </td> 99 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'useTargetCompletionDate','errors')}"> 100 <g:checkBox name="useTargetCompletionDate" 101 value="${taskRecurringScheduleInstance?.useTargetCompletionDate}" > 102 </g:checkBox> 103 <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.useTargetCompletionDate" /> 104 <g:formatDate date="${taskRecurringScheduleInstance.task.targetCompletionDate}" 105 format="EEE, dd-MMM-yyyy"/> 106 </td> 107 </tr> 83 108 84 109 <tr class="prop"> -
trunk/grails-app/views/taskRecurringScheduleDetailed/edit.gsp
r213 r445 34 34 <td valign="top" name="recForTask" class="value"> 35 35 <g:link controller="taskDetailed" action="show" id="${taskRecurringScheduleInstance?.task?.id}">${taskRecurringScheduleInstance?.task?.encodeAsHTML()}</g:link> 36 </td> 37 </tr> 38 39 <tr class="prop"> 40 <td valign="top" class="name"> 41 <label for="enabled">Enabled:</label> 42 </td> 43 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'enabled','errors')}"> 44 <g:checkBox name="enabled" value="${taskRecurringScheduleInstance?.enabled}" ></g:checkBox> 45 <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.enabled" /> 36 46 </td> 37 47 </tr> … … 82 92 </td> 83 93 </tr> 94 95 <tr class="prop"> 96 <td valign="top" class="name"> 97 <label for="maxSubTasks">Max Sub Tasks:</label> 98 </td> 99 <td valign="top" class="value" > 100 <input type="text" class="time ${hasErrors(bean:taskRecurringScheduleInstance,field:'maxSubTasks','errors')}" 101 id="maxSubTasks" name="maxSubTasks" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'maxSubTasks')}" /> 102 <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.maxSubTasks" /> 103 </td> 104 </tr> 84 105 85 106 <tr class="prop"> 86 107 <td valign="top" class="name"> 87 <label for=" enabled">Enabled:</label>108 <label for="useTargetCompletionDate">Use Target Completion Date:</label> 88 109 </td> 89 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'enabled','errors')}"> 90 <g:checkBox name="enabled" value="${taskRecurringScheduleInstance?.enabled}" ></g:checkBox> 91 <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.enabled" /> 110 <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'useTargetCompletionDate','errors')}"> 111 <g:checkBox name="useTargetCompletionDate" 112 value="${taskRecurringScheduleInstance?.useTargetCompletionDate}" > 113 </g:checkBox> 114 <g:helpBalloon class="helpballoon" code="taskRecurringSchedule.useTargetCompletionDate" /> 115 <g:formatDate date="${taskRecurringScheduleInstance.task.targetCompletionDate}" 116 format="EEE, dd-MMM-yyyy"/> 92 117 </td> 93 118 </tr> -
trunk/grails-app/views/taskRecurringScheduleDetailed/show.gsp
r199 r445 33 33 <td valign="top" class="value">${taskRecurringScheduleInstance.encodeAsHTML()}</td> 34 34 </tr> 35 36 <tr class="prop"> 37 <td valign="top" class="name">Enabled:</td> 38 39 <td valign="top" class="value">${fieldValue(bean:taskRecurringScheduleInstance, field:'enabled')}</td> 40 </tr> 41 42 <g:if test="${taskRecurringScheduleInstance.useTargetCompletionDate}" > 43 <tr class="prop"> 44 <td valign="top" class="name">Task Target Completion:</td> 45 46 <td valign="top" class="value"> 47 <g:formatDate date="${taskRecurringScheduleInstance.task.targetCompletionDate}" 48 format="EEE, dd-MMM-yyyy"/> 49 </td> 50 </tr> 51 </g:if> 35 52 36 53 <tr class="prop"> … … 74 91 </tr> 75 92 76 <tr class="prop">77 <td valign="top" class="name">Enabled:</td>78 79 <td valign="top" class="value">${fieldValue(bean:taskRecurringScheduleInstance, field:'enabled')}</td>80 </tr>81 82 93 </tbody> 83 94 </table> … … 100 111 </td> 101 112 </tr> 113 114 <g:if test="${taskRecurringScheduleInstance.maxSubTasks > 0}" > 115 <tr class="prop"> 116 <td valign="top" class="name">Max Sub Tasks:</td> 117 118 <td valign="top" class="value"> 119 ${fieldValue(bean:taskRecurringScheduleInstance, field:'maxSubTasks')} 120 </td> 121 </tr> 122 </g:if> 102 123 103 124 <g:if test="${taskRecurringScheduleInstance.lastGeneratedSubTask}">
Note: See TracChangeset
for help on using the changeset viewer.