2018-01-16 16:28:13 +01:00
|
|
|
- content_for(:title) { page.page_title }
|
|
|
|
|
|
|
|
%header.header
|
|
|
|
%h1.header__heading= content_for(:title)
|
|
|
|
.header__actions
|
|
|
|
- if page.resource.invitation_expired?
|
2018-01-18 10:04:34 +01:00
|
|
|
= link_to "renvoyer l'invitation", reinvite_manager_administrateur_path(page.resource), method: :post, class: "button"
|
2018-01-16 16:28:13 +01:00
|
|
|
|
|
|
|
%dl
|
|
|
|
- page.attributes.each do |attribute|
|
|
|
|
%dt.attribute-label
|
|
|
|
= t("helpers.label.#{resource_name}.#{attribute.name}", default: attribute.name.titleize)
|
|
|
|
|
|
|
|
%dd.attribute-data{ class: "attribute-data--#{attribute.html_class}" }
|
|
|
|
= render_field attribute
|