Browse Source

make codes only download visible to support users only

pull/1268/head
Arthur Campbell 3 years ago
parent
commit
ee17ee55ee
  1. 4
      app/views/logs/_log_list.html.erb

4
app/views/logs/_log_list.html.erb

@ -2,7 +2,9 @@
<%= render(SearchResultCaptionComponent.new(searched:, count: pagy.count, item_label:, total_count:, item: "logs", path: request.path)) %>
<% if logs&.first&.lettings? %>
<%= govuk_link_to "Download (CSV)", csv_download_url, type: "text/csv", class: "govuk-!-margin-right-4" %>
<%= govuk_link_to "Download (CSV, codes only)", csv_codes_only_download_url, type: "text/csv" %>
<% if @current_user.support? %>
<%= govuk_link_to "Download (CSV, codes only)", csv_codes_only_download_url, type: "text/csv" %>
<% end %>
<% end %>
</h2>
<% logs.map do |log| %>

Loading…
Cancel
Save