##// END OF EJS Templates
fixes issue #506
marcink -
r2636:4dbc00e9 beta
parent child Browse files
Show More
@@ -133,7 +133,7
133 133 </div>
134 134 ${h.end_form()}
135 135 </div>
136 <div class="box box-right">
136 <div style="min-height:780px" class="box box-right">
137 137 <!-- box / title -->
138 138 <div class="title">
139 139 <h5>${_('Permissions')}</h5>
@@ -162,7 +162,9
162 162 <div id="perms" class="table">
163 163 %for section in sorted(c.perm_user.permissions.keys()):
164 164 <div class="perms_section_head">${section.replace("_"," ").capitalize()}</div>
165
165 %if not c.perm_user.permissions[section]:
166 <span style="color:#B9B9B9">${_('Nothing here yet')}</span>
167 %else:
166 168 <div id='tbl_list_wrap_${section}' class="yui-skin-sam">
167 169 <table id="tbl_list_${section}">
168 170 <thead>
@@ -211,6 +213,7
211 213 </tbody>
212 214 </table>
213 215 </div>
216 %endif
214 217 %endfor
215 218 </div>
216 219 </div>
General Comments 0
You need to be logged in to leave comments. Login now