Changeset 123 for trunk/grails-app/views/recurringSchedule
- Timestamp:
- May 4, 2009, 5:12:01 AM (16 years ago)
- Location:
- trunk/grails-app/views/recurringSchedule
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/recurringSchedule/create.gsp
r122 r123 33 33 <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'plannedMaintenance','errors')}"> 34 34 <g:select optionKey="id" from="${PlannedMaintenance.list()}" name="plannedMaintenance.id" value="${recurringScheduleInstance?.plannedMaintenance?.id}" noSelection="['null':'']"></g:select> 35 </td> 36 </tr> 37 38 <tr class="prop"> 39 <td valign="top" class="name"> 40 <label for="lastExecutedDate">Last Executed Date:</label> 41 </td> 42 <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'lastExecutedDate','errors')}"> 43 <g:datePicker name="lastExecutedDate" value="${recurringScheduleInstance?.lastExecutedDate}" noSelection="['':'']"></g:datePicker> 44 </td> 45 </tr> 46 47 <tr class="prop"> 48 <td valign="top" class="name"> 49 <label for="nextDueDate">Next Due Date:</label> 50 </td> 51 <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'nextDueDate','errors')}"> 52 <g:datePicker name="nextDueDate" value="${recurringScheduleInstance?.nextDueDate}" noSelection="['':'']"></g:datePicker> 35 53 </td> 36 54 </tr> -
trunk/grails-app/views/recurringSchedule/edit.gsp
r122 r123 36 36 <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'plannedMaintenance','errors')}"> 37 37 <g:select optionKey="id" from="${PlannedMaintenance.list()}" name="plannedMaintenance.id" value="${recurringScheduleInstance?.plannedMaintenance?.id}" noSelection="['null':'']"></g:select> 38 </td> 39 </tr> 40 41 <tr class="prop"> 42 <td valign="top" class="name"> 43 <label for="lastExecutedDate">Last Executed Date:</label> 44 </td> 45 <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'lastExecutedDate','errors')}"> 46 <g:datePicker name="lastExecutedDate" value="${recurringScheduleInstance?.lastExecutedDate}" noSelection="['':'']"></g:datePicker> 47 </td> 48 </tr> 49 50 <tr class="prop"> 51 <td valign="top" class="name"> 52 <label for="nextDueDate">Next Due Date:</label> 53 </td> 54 <td valign="top" class="value ${hasErrors(bean:recurringScheduleInstance,field:'nextDueDate','errors')}"> 55 <g:datePicker name="nextDueDate" value="${recurringScheduleInstance?.nextDueDate}" noSelection="['':'']"></g:datePicker> 38 56 </td> 39 57 </tr> -
trunk/grails-app/views/recurringSchedule/list.gsp
r122 r123 26 26 <th>Planned Maintenance</th> 27 27 28 <g:sortableColumn property="lastExecutedDate" title="Last Executed Date" /> 29 30 <g:sortableColumn property="nextDueDate" title="Next Due Date" /> 31 28 32 <g:sortableColumn property="isActive" title="Is Active" /> 29 33 30 34 <th>Period</th> 31 35 32 <g:sortableColumn property="recurEvery" title="Recur Every" />33 34 <g:sortableColumn property="startDate" title="Start Date" />35 36 36 </tr> 37 37 </thead> … … 44 44 <td>${fieldValue(bean:recurringScheduleInstance, field:'plannedMaintenance')}</td> 45 45 46 <td>${fieldValue(bean:recurringScheduleInstance, field:'lastExecutedDate')}</td> 47 48 <td>${fieldValue(bean:recurringScheduleInstance, field:'nextDueDate')}</td> 49 46 50 <td>${fieldValue(bean:recurringScheduleInstance, field:'isActive')}</td> 47 51 48 52 <td>${fieldValue(bean:recurringScheduleInstance, field:'period')}</td> 49 50 <td>${fieldValue(bean:recurringScheduleInstance, field:'recurEvery')}</td>51 52 <td>${fieldValue(bean:recurringScheduleInstance, field:'startDate')}</td>53 53 54 54 </tr> -
trunk/grails-app/views/recurringSchedule/show.gsp
r122 r123 34 34 35 35 <td valign="top" class="value"><g:link controller="plannedMaintenance" action="show" id="${recurringScheduleInstance?.plannedMaintenance?.id}">${recurringScheduleInstance?.plannedMaintenance?.encodeAsHTML()}</g:link></td> 36 37 </tr> 38 39 <tr class="prop"> 40 <td valign="top" class="name">Last Executed Date:</td> 41 42 <td valign="top" class="value">${fieldValue(bean:recurringScheduleInstance, field:'lastExecutedDate')}</td> 43 44 </tr> 45 46 <tr class="prop"> 47 <td valign="top" class="name">Next Due Date:</td> 48 49 <td valign="top" class="value">${fieldValue(bean:recurringScheduleInstance, field:'nextDueDate')}</td> 36 50 37 51 </tr>
Note: See TracChangeset
for help on using the changeset viewer.