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

20 lines
700 B
Plaintext
Raw Normal View History

<% query ||= nil %>
<% text = query.present? ? highlight(experiment.name, query.strip.split(/\s+/)) : experiment.name %>
<% if experiment.archived? %>
<span class="label label-warning"><%=t "search.index.archived" %></span>
<% if can_view_experiment(experiment) and can_restore_experiment(experiment.project) %>
2016-10-11 22:16:48 +08:00
<%= route_to_other_org root_path, experiment.project.organization, text %>
<% else %>
<%= text %>
<% end %>
<% else %>
<% if can_view_experiment(experiment) %>
2016-10-11 22:16:48 +08:00
<%= route_to_other_org canvas_experiment_path(experiment),
experiment.project.organization,
text %>
<% else %>
<%= text %>
<% end %>
<% end %>