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
685 B
17 lines
685 B
<div class="govuk-grid-row"> |
|
<p class="govuk-!-font-weight-bold"><%== I18n.t("active_notifications", count: active_notifications.count) %></p> |
|
<% active_notifications.each do |notification| %> |
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-three-quarters"> |
|
<%== render_for_home(notification) %> |
|
</div> |
|
<div class="govuk-grid-column-one-quarter"> |
|
<%= govuk_link_to("Delete notification", notification_delete_confirmation_path(notification), class: "app-!-colour-red") %> |
|
</div> |
|
</div> |
|
<% end %> |
|
</div> |
|
|
|
<div class="govuk-grid-row"> |
|
<%= govuk_button_link_to "Create a new notification", new_notification_path %> |
|
</div>
|
|
|