mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 21:54:48 +02:00
35 lines
1 KiB
Text
35 lines
1 KiB
Text
<div class="page-header">
|
|
<h1><%= t '.header' %></h1>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="table-responsive">
|
|
<table class="table table-hover table-bordered table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-xs-2">
|
|
<%= sort_link(@q, 'username') %>
|
|
</th>
|
|
<th class="col-xs-2">
|
|
<%= sort_link(@q, 'registrar_name', Registrar.model_name.human) %>
|
|
</th>
|
|
<th class="col-xs-2">
|
|
<%= sort_link(@q, 'active', ApiUser.human_attribute_name(:active)) %>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<%= render @api_users %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<%= paginate @api_users %>
|
|
</div>
|
|
</div>
|