blob: bff8eb89caafe205b578087628365c9d1d865d36 [file] [log] [blame]
{{!
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
}}
{{#if view.ldapUser}}
<p class="text-info">{{t admin.users.ldapAuthentionUsed}}.</p>
{{else}}
<table class="table table-bordered table-striped span6">
<thead>
<tr>
<th style="width:50%">{{t admin.users.username}}</th>
<th style="width:10%">{{t admin.users.privileges}}</th>
<th style="width:20%">{{t admin.users.type}}</th>
<th style="width:20%">{{t admin.users.action}}</th>
</tr>
</thead>
<tbody>
{{#each user in view.users}}
{{view App.MainAdminUserRowView userBinding="user"}}
{{/each}}
</tbody>
</table>
<div class="span2">
<button class="btn" {{action gotoCreateUser on="click"}} >
<i class="icon-plus"></i>{{t admin.users.addButton}}
</button>
</div>
{{/if}}