feat(Administrateur::Procedure::Service.form): add back link
This commit is contained in:
parent
d2b42dda2e
commit
edbff1ceb2
3 changed files with 8 additions and 2 deletions
|
@ -494,6 +494,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.justify-content--space-between {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.send-notice {
|
||||
@include notice-text-style;
|
||||
margin-bottom: $default-padding;
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
= f.select :type_organisme, Service.type_organismes.keys.map { |key| [ I18n.t("type_organisme.#{key}"), key] }
|
||||
|
||||
|
||||
= render Dsfr::CalloutComponent.new(title: "Informations de contact") do |c|
|
||||
- c.body do
|
||||
Votre démarche sera hébergée par #{APPLICATION_NAME} – mais nous ne pouvons pas assurer le support des démarches. Et malgré la dématérialisation, les usagers se poseront parfois des questions légitimes sur le processus administratif.
|
||||
|
@ -60,6 +61,7 @@
|
|||
- if procedure_id.present?
|
||||
= hidden_field_tag :procedure_id, procedure_id
|
||||
|
||||
.send-wrapper
|
||||
.send-wrapper.justify-content--space-between
|
||||
= render Dsfr::ButtonComponent.new(label: "Annuler et revenir à la page de suivi", url: admin_procedure_path(id: @procedure.id), class_names: ['fr-btn--secondary'])
|
||||
= render Dsfr::ButtonComponent.new(form: f, label: "Enregistrer", class_names: [''])
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
.container
|
||||
|
||||
- if @procedure.service.procedures.count.positive?
|
||||
= render Dsfr::AlertComponent.new(state: :warning, title: "Modifier un service impactera la ou les démarches qui sont rattachée/s") do |c|
|
||||
= render Dsfr::AlertComponent.new(state: :warning, title: "Modifier ce service impactera la ou les démarches qui sont rattachée/s") do |c|
|
||||
- c.body do
|
||||
%ul
|
||||
- @service.procedures.each do |proc|
|
||||
|
|
Loading…
Reference in a new issue