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

29 lines
994 B
Plaintext
Raw Normal View History

2016-07-28 19:29:26 +08:00
<% link_to_page = :canvas if local_assigns[:link_to_page].nil? %>
2016-02-12 23:52:43 +08:00
<% query ||= nil %>
2016-07-21 19:11:15 +08:00
<% text = query.present? ? highlight(project.name, query.strip.split(/\s+/)) : project.name %>
2016-02-12 23:52:43 +08:00
<% if project.archived? %>
<span class="label label-warning"><%=t "search.index.archived" %></span>
<% if can_view_projects(project.organization) and can_restore_project(project) %>
2016-10-11 22:16:48 +08:00
<%= route_to_other_org projects_archive_path(organization: project.organization),
project.organization,
text %>
2016-02-12 23:52:43 +08:00
<% else %>
<%= text %>
<% end %>
<% else %>
<% if can_view_project(project) %>
<% if link_to_page == :show %>
2016-10-11 22:16:48 +08:00
<%= route_to_other_org project_path(project),
project.organization,
text %>
2016-07-21 19:11:15 +08:00
<% else %>
2016-10-11 22:16:48 +08:00
<%= route_to_other_org root_path,
nil,
text %>
2016-07-21 19:11:15 +08:00
<% end %>
2016-02-12 23:52:43 +08:00
<% else %>
<%= text %>
<% end %>
2016-10-11 22:16:48 +08:00
<% end %>