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.
22 lines
1.2 KiB
22 lines
1.2 KiB
4 months ago
|
<% unless @merge_request.absorbing_organisation_signed_dsa? || @merge_request.absorbing_organisation_id.blank? %>
|
||
|
<%= govuk_notification_banner(title_text: "Important") do %>
|
||
|
<p class="govuk-notification-banner__heading govuk-!-width-full" style="max-width: fit-content">
|
||
|
The absorbing organisation must accept the Data Sharing Agreement before merging.
|
||
|
</p>
|
||
|
<% if @merge_request.dpo_user %>
|
||
|
Contact the Data Protection Officer: <%= link_to @merge_request.dpo_user.name, user_path(@merge_request.dpo_user.id) %>
|
||
|
<% else %>
|
||
|
<%= @merge_request.absorbing_organisation_name %> does not have a Data Protection Officer. You can assign one on the <%= link_to "users page", "#{organisation_path(@merge_request.absorbing_organisation_id)}/users" %>.
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
|
||
|
<% if @merge_request.last_failed_attempt.present? %>
|
||
|
<%= govuk_notification_banner(title_text: "Important") do %>
|
||
|
<p class="govuk-notification-banner__heading govuk-!-width-full" style="max-width: fit-content">
|
||
|
An error occurred while processing the merge.
|
||
|
</p>
|
||
|
No changes have been made. Try beginning the merge again.
|
||
|
<% end %>
|
||
|
<% end %>
|