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

22 lines
591 B
Plaintext

<% 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) %>
<a href="/">
<%= text %>
</a>
<% else %>
<%= text %>
<% end %>
<% else %>
<% if can_view_experiment(experiment) %>
<a href="<%= canvas_experiment_path(experiment) %>">
<%= text %>
</a>
<% else %>
<%= text %>
<% end %>
<% end %>