source: trunk/grails-app/views/assignedGroupDetailed/_personsInGroup.gsp @ 324

Last change on this file since 324 was 254, checked in by gav, 14 years ago

Add ajax feature to show persons in the group when creating and editing assignedGroup.
Remove the list and show detailed views since they are no longer used.

File size: 688 bytes
Line 
1
2<table>
3    <tbody>
4        <tr class="prop">
5            <td valign="top" class="name">
6                <label for="persons">Persons in group (${personGroup.encodeAsHTML()}):</label>
7            </td>
8            <td valign="top" class="value">
9                <ul>
10                    <g:if test="${personsInGroup.size() > 0}">
11                        <g:each var="a" in="${personsInGroup}">
12                            <li>${a?.encodeAsHTML()}</li>
13                        </g:each>
14                    </g:if>
15                    <g:else>
16                        <li>None</li>
17                    </g:else>
18                </ul>
19            </td>
20        </tr>
21    </tbody>
22</table>
Note: See TracBrowser for help on using the repository browser.