scinote-web/app/views/search/results/partials/_step_text.html.erb
2016-10-17 15:10:26 +02:00

26 lines
953 B
Plaintext

<% target = nil if local_assigns[:target].nil? %>
<% query ||= nil %>
<% text = query.present? ? highlight(step.name, query.strip.split(/\s+/)) : step.name %>
<% if can_view_steps_in_protocol(step.protocol) %>
<% if step.protocol.in_module? %>
<% if target == :comment %>
<%= route_to_other_org protocols_my_module_path(step.protocol.my_module, ctarget: "step-panel-#{step.id}"),
step.protocol.organization,
text %>
<% else %>
<%= route_to_other_org protocols_my_module_path(step.protocol.my_module),
step.protocol.organization,
text %>
<% end %>
<% elsif can_edit_protocol(step.protocol) %>
<%= route_to_other_org edit_protocol_path(step.protocol),
step.protocol.organization,
text %>
<% else %>
<%= text %>
<% end %>
<% else %>
<%= text %>
<% end %>