scinote-web/app/views/search/results/partials/_step_text.html.erb

26 lines
938 B
Plaintext
Raw Normal View History

2016-07-28 19:29:26 +08:00
<% target = nil if local_assigns[:target].nil? %>
2016-02-12 23:52:43 +08:00
<% query ||= nil %>
2016-07-21 19:11:15 +08:00
<% text = query.present? ? highlight(step.name, query.strip.split(/\s+/)) : step.name %>
2016-02-12 23:52:43 +08:00
2016-07-21 19:11:15 +08:00
<% if can_view_steps_in_protocol(step.protocol) %>
<% if step.protocol.in_module? %>
<% if target == :comment %>
2017-01-25 19:01:23 +08:00
<%= route_to_other_team protocols_my_module_path(step.protocol.my_module, ctarget: "step-panel-#{step.id}"),
step.protocol.team,
text %>
2016-07-21 19:11:15 +08:00
<% else %>
2017-01-25 19:01:23 +08:00
<%= route_to_other_team protocols_my_module_path(step.protocol.my_module),
step.protocol.team,
text %>
2016-07-21 19:11:15 +08:00
<% end %>
<% elsif can_edit_protocol(step.protocol) %>
2017-01-25 19:01:23 +08:00
<%= route_to_other_team edit_protocol_path(step.protocol),
step.protocol.team,
text %>
2016-07-21 19:11:15 +08:00
<% else %>
2016-02-12 23:52:43 +08:00
<%= text %>
2016-07-21 19:11:15 +08:00
<% end %>
2016-02-12 23:52:43 +08:00
<% else %>
<%= text %>
2016-07-21 19:11:15 +08:00
<% end %>