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/people/index.html.erb

19 lines
546 B
Text

<div class="container">
<%= nav_breadcrumb(
[translate(:staff_services), staff_root_path],
Person.model_name.human(count: 0),
) %>
<% if policy(%i[staff person]).new? %>
<div class="btn-group" role="group">
<% if policy(%i[staff person]).new? %>
<%= link_to translate(:create),
new_staff_person_path,
class: 'btn btn-primary',
role: :button %>
<% end %>
</div>
<% end %>
<%= render partial: 'table', locals: { people: @people } %>
</div>