scinote-web/app/views/search/results/partials/_report_text.html.erb
2016-02-12 16:52:43 +01:00

10 lines
263 B
Plaintext

<% query ||= nil %>
<% text = query.present? ? highlight(report.name, query) : report.name %>
<% if can_view_reports(report.project) %>
<a href="<%= edit_project_report_path(report.project, report) %>">
<%= text %>
</a>
<% else %>
<%= text %>
<% end %>