mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
14 lines
772 B
Text
14 lines
772 B
Text
<div class="users-access-cell">
|
|
<% if can_manage_protocol_users?(protocol) %>
|
|
<%= link_to edit_access_permissions_protocol_path(protocol), class: 'protocol-users-link', data: { action: 'remote-modal' } do %>
|
|
<%= render partial: 'protocols/index/users_list.html.erb', locals: { protocol: protocol } %>
|
|
<span class="new-user global-avatar-container">
|
|
<i class="sn-icon sn-icon-new-task"></i>
|
|
</span>
|
|
<% end %>
|
|
<% else %>
|
|
<%= link_to access_permissions_protocol_path(protocol), class: 'protocol-users-link', data: { action: 'remote-modal' } do %>
|
|
<%= render partial: 'protocols/index/users_list.html.erb', locals: { protocol: protocol } %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|