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.
17 lines
590 B
17 lines
590 B
2 years ago
|
<% if display_banner? %>
|
||
|
<%= govuk_notification_banner(title_text: "Important") do %>
|
||
|
<p class="govuk-notification-banner__heading govuk-!-width-full" style="max-width: fit-content">
|
||
|
<%= I18n.t("validations.organisation.data_sharing_agreement_not_signed") %>
|
||
|
<p>
|
||
|
<% if user.is_dpo? %>
|
||
|
<%= govuk_link_to(
|
||
|
"Read the Data Sharing Agreement",
|
||
|
data_sharing_agreement_href,
|
||
|
class: "govuk-notification-banner__link govuk-!-font-weight-bold",
|
||
|
) %>
|
||
|
<% else %>
|
||
|
<%= data_protection_officers_text %>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
<% end %>
|