1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/staffs/accounts/_table.html.erb

39 lines
960 B
Text

<table class="table">
<thead>
<tr>
<th scope="col">
<%= Account.human_attribute_name :id %>
</th>
<th scope="col">
<%= Account.human_attribute_name :nickname %>
</th>
<th scope="col">
<%= Account.human_attribute_name :public_name %>
</th>
<th scope="col"></th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% accounts.each do |account| %>
<tr>
<td scope="row"><%= account.id %></td>
<td><%= account.nickname %></td>
<td><%= account.public_name %></td>
<td>
<% if account.superuser? %>
<span class="badge badge-primary">
<%= translate :superuser %>
</span>
<% end %>
</td>
<td>
<% if policy([:staff, account]).show? %>
<%= open_action [:staff, account] %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>