| 183 | | <td><input type="checkbox" name="selpathmember_acl" value="${pathmember.subject}_R" checked="${pathmember.read}" /></td> |
|---|
| 184 | | <td><input type="checkbox" name="selpathmember_acl" value="${pathmember.subject}_W" checked="${pathmember.write}" /></td> |
|---|
| | 183 | <py:if test="pathmember.read == 'checked'"> |
|---|
| | 184 | <td><input type="checkbox" name="selpathmember_acl" value="${pathmember.subject}_R" checked="checked" /></td> |
|---|
| | 185 | </py:if> |
|---|
| | 186 | <py:if test="pathmember.read != 'checked'"> |
|---|
| | 187 | <td><input type="checkbox" name="selpathmember_acl" value="${pathmember.subject}_R" /></td> |
|---|
| | 188 | </py:if> |
|---|
| | 189 | <py:if test="pathmember.write == 'checked'"> |
|---|
| | 190 | <td><input type="checkbox" name="selpathmember_acl" value="${pathmember.subject}_W" checked="checked" /></td> |
|---|
| | 191 | </py:if> |
|---|
| | 192 | <py:if test="pathmember.write != 'checked'"> |
|---|
| | 193 | <td><input type="checkbox" name="selpathmember_acl" value="${pathmember.subject}_W" /></td> |
|---|
| | 194 | </py:if> |
|---|