15 lines
522 B
Plaintext
15 lines
522 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">×</span>
|
|
</button>
|
|
<%= t("officing.residence.new.error_verifying_census") %>
|
|
</div>
|
|
|
|
<% else %>
|
|
<%= render "shared/errors",
|
|
resource: @residence,
|
|
message: t("officing.residence.new.form_errors") %>
|
|
<% end %>
|