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/home/show.html.erb
2019-08-15 13:04:51 +05:00

17 lines
418 B
Text

<div class="container">
<%= nav_breadcrumb translate :staff_services %>
<ul>
<% if policy(%i[staff account]).index? %>
<li>
<%= link_to Account.model_name.human(count: 0), staff_accounts_path %>
</li>
<% end %>
<% if policy(%i[staff person]).index? %>
<li>
<%= link_to Person.model_name.human(count: 0), staff_people_path %>
</li>
<% end %>
</ul>
</div>