Author: thomas.heute(a)jboss.com
Date: 2007-05-24 10:21:31 -0400 (Thu, 24 May 2007)
New Revision: 7327
Modified:
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/editSecurity.xhtml
Log:
Alignement with other tables
Modified:
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/editSecurity.xhtml
===================================================================
---
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/editSecurity.xhtml 2007-05-24
14:09:20 UTC (rev 7326)
+++
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/editSecurity.xhtml 2007-05-24
14:21:31 UTC (rev 7327)
@@ -7,18 +7,23 @@
<h:form>
<table>
+ <thead class="portlet-section-header">
+ <tr>
+ <th>Roles</th>
+ <th>Permissions</th>
+ </tr>
+ </thead>
<tbody>
<c:forEach items="#{auth.roles}" var="role"
varStatus="status">
- <tr>
+ <tr class="#{status.index % 2 == 0 ?
'portlet-section-body' : 'portlet-section-alternate'}">
<td>
<h:outputLabel for="cars_#{status.index}">
- <span class="portlet-form-field-label">Role
<span>#{role == '__unchecked__' ? 'Unchecked' :
(auth.roleDisplayNameMap[role] != null ? auth.roleDisplayNameMap[role] :
role)}</span></span>:
+ Role #{role == '__unchecked__' ? 'Unchecked' :
(auth.roleDisplayNameMap[role] != null ? auth.roleDisplayNameMap[role] : role)}:
</h:outputLabel>
</td>
<td>
<h:selectManyCheckbox
id="cars_#{status.index}"
- styleClass="portlet-form-field"
value="#{auth.forRole[role]}"
layout="lineDirection">
<f:selectItems
value="#{auth.availableActions}"/>
Show replies by date