Ignore:
Timestamp:
Dec 23, 2009, 5:12:17 PM (14 years ago)
Author:
gav
Message:

Re-implement AssignedGroups along side AssignedPersons manually taking the good stuff from r240.
As per revised ticket #37.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/taskDetailed/edit.gsp

    r241 r242  
    151151                            <tr class="prop">
    152152                                <td valign="top" class="name">
     153                                    <label for="assignedPersons">Assigned Groups:</label>
     154                                </td>
     155                                <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'assignedGroups','errors')}">
     156                                   
     157                                <ul>
     158                                <g:each var="a" in="${taskInstance?.assignedGroups?}">
     159                                    <li><g:link controller="assignedGroupDetailed" action="edit" id="${a.id}">${a?.encodeAsHTML()}</g:link></li>
     160                                </g:each>
     161                                </ul>
     162
     163                                </td>
     164                            </tr>
     165
     166                            <tr class="prop">
     167                                <td valign="top" class="name">
    153168                                    <label for="assignedPersons">Assigned Persons:</label>
    154169                                </td>
Note: See TracChangeset for help on using the changeset viewer.