12 lines
720 B
12 lines
720 B
<% if @bulk_upload.choice == "cancelled-by-moved-user" %> |
|
<%= govuk_notification_banner(title_text: "Important") do %> |
|
<p class="govuk-notification-banner__heading govuk-!-width-full" style="max-width: fit-content"> |
|
This error report is out of date. |
|
<p> |
|
<% if current_user.id == @bulk_upload.moved_user_id %> |
|
You moved to a different organisation since this file was uploaded. Upload the file again to get an accurate error report. |
|
<% else %> |
|
Some logs in this upload are assigned to <%= @bulk_upload.moved_user_name %>, who has moved to a different organisation since this file was uploaded. Upload the file again to get an accurate error report. |
|
<% end %> |
|
<% end %> |
|
<% end %>
|
|
|