Files
nairobi/app/views/verification/residence/_errors.html.erb
2019-03-06 13:08:35 +01:00

15 lines
531 B
Plaintext

<% if @residence.errors[:residence_in_madrid].present? %>
<div id="error_explanation" data-alert class="callout alert" data-closable>
<button class="close-button" aria-label="<%= t("application.close") %>" type="button" data-close>
<span aria-hidden="true">&times;</span>
</button>
<%= t("verification.residence.new.error_verifying_census") %>
</div>
<% else %>
<%= render "shared/errors",
resource: @residence,
message: t("verification.residence.new.form_errors") %>
<% end %>