Changeset 134 for trunk/grails-app/views/period/edit.gsp
- Timestamp:
- May 13, 2009, 12:51:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/period/edit.gsp
r122 r134 50 50 <tr class="prop"> 51 51 <td valign="top" class="name"> 52 <label for=" recurringSchedules">Recurring Schedules:</label>52 <label for="taskRecurringSchedules">Task Recurring Schedules:</label> 53 53 </td> 54 <td valign="top" class="value ${hasErrors(bean:periodInstance,field:' recurringSchedules','errors')}">54 <td valign="top" class="value ${hasErrors(bean:periodInstance,field:'taskRecurringSchedules','errors')}"> 55 55 56 56 <ul> 57 <g:each var=" r" in="${periodInstance?.recurringSchedules?}">58 <li><g:link controller=" recurringSchedule" action="show" id="${r.id}">${r?.encodeAsHTML()}</g:link></li>57 <g:each var="t" in="${periodInstance?.taskRecurringSchedules?}"> 58 <li><g:link controller="taskRecurringSchedule" action="show" id="${t.id}">${t?.encodeAsHTML()}</g:link></li> 59 59 </g:each> 60 60 </ul> 61 <g:link controller=" recurringSchedule" params="['period.id':periodInstance?.id]" action="create">AddRecurringSchedule</g:link>61 <g:link controller="taskRecurringSchedule" params="['period.id':periodInstance?.id]" action="create">Add TaskRecurringSchedule</g:link> 62 62 63 63 </td>
Note: See TracChangeset
for help on using the changeset viewer.