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

20 lines
546 B
Text
Raw Normal View History

<div class="container">
2019-08-15 03:57:17 -04:00
<%= nav_breadcrumb(
[translate(:staff_services), staff_root_path],
Person.model_name.human(count: 0),
) %>
2019-07-26 00:46:01 -04:00
<% 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 %>
2019-09-03 10:31:20 -04:00
<%= render partial: 'table', locals: { people: @people } %>
</div>