mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
<% query ||= nil %>
|
|
<% text = query.present? ? highlight(protocol.name, query.strip.split(/\s+/)) : (protocol.name.empty? ? t("search.index.no_name") : protocol.name) %>
|
|
|
|
<% if protocol.in_module? %>
|
|
<span class="label label-info">
|
|
<span class="glyphicon glyphicon-credit-card"></span>
|
|
</span>
|
|
|
|
<% if can_view_steps_in_protocol(protocol) %>
|
|
<a href="<%= protocols_my_module_path(protocol.my_module) %>">
|
|
<%= text %>
|
|
</a>
|
|
<% else %>
|
|
<%= text %>
|
|
<% end %>
|
|
<% else %>
|
|
<% if protocol.in_repository_public? %>
|
|
<span class="label label-info">
|
|
<%=t "search.index.public" %>
|
|
</span>
|
|
|
|
<% elsif protocol.in_repository_private? %>
|
|
<span class="label label-info">
|
|
<%=t "search.index.private" %>
|
|
</span>
|
|
|
|
<% elsif protocol.in_repository_archived? %>
|
|
<span class="label label-warning">
|
|
<%=t "search.index.archived" %>
|
|
</span>
|
|
|
|
<% end %>
|
|
<% if can_edit_protocol(protocol) %>
|
|
<a href="<%= edit_protocol_path(protocol) %>">
|
|
<%= text %>
|
|
</a>
|
|
<% else %>
|
|
<%= text %>
|
|
<% end %>
|
|
<% end %>
|