You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
712 B
13 lines
712 B
3 months ago
|
<% 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. Reupload the file 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. Reupload the file to get an accurate error report.
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
<% end %>
|