1
<div id="orgsDiv">
2
<c:set var="j" value="0" />
3
<c:set var="type" value="" />
4
<c:forEach items="${orgs}" var="org" varStatus="i">
5
<c:if test="${type != org.type && i.index!=0}">
6
<c:forEach begin="${j%4}" end="3">
7
<td width="25%"> </td>
8
</c:forEach>
9
</tr>
10
</table>
11
<hr width="100%" style="border: 1px solid #cadae8; height: 1px">
12
</c:if>
13
<c:if test="${type != org.type }">
14
<c:set var="j" value="0" />
15
<table border="0" width="100%" cellpadding="0" cellspacing="0">
16
</c:if>
17
<c:if test="${j%4 == 0}">
18
<tr>
19
</c:if>
20
<td width="25%">
21
<html:multibox property="orgIds">${org.id}</html:multibox>
22
<c:out value="${org.shortName}" />
23
</td>
24
<c:if test="${(i.last) || (j%4 == 3)}">
25
<c:if test="${i.last}">
26
<c:forEach begin="${i.index%4}" end="2">
27
<td width="25%"> </td>
28
</c:forEach>
29
</c:if>
30
</tr>
31
<c:if test="${i.last}">
32
</table>
33
</c:if>
34
</c:if>
35
<c:set var="j" value="${j+1}" />
36
<c:set var="type" value="${org.type}" />
37
</c:forEach>
38
</div>

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38
