Changeset 134 for trunk/grails-app/views/period
- Timestamp:
- May 13, 2009, 12:51:15 PM (16 years ago)
- Location:
- trunk/grails-app/views/period
- Files:
-
- 2 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> -
trunk/grails-app/views/period/show.gsp
r122 r134 45 45 46 46 <tr class="prop"> 47 <td valign="top" class="name"> Recurring Schedules:</td>47 <td valign="top" class="name">Task Recurring Schedules:</td> 48 48 49 49 <td valign="top" style="text-align:left;" class="value"> 50 50 <ul> 51 <g:each var=" r" in="${periodInstance.recurringSchedules}">52 <li><g:link controller=" recurringSchedule" action="show" id="${r.id}">${r?.encodeAsHTML()}</g:link></li>51 <g:each var="t" in="${periodInstance.taskRecurringSchedules}"> 52 <li><g:link controller="taskRecurringSchedule" action="show" id="${t.id}">${t?.encodeAsHTML()}</g:link></li> 53 53 </g:each> 54 54 </ul>
Note: See TracChangeset
for help on using the changeset viewer.