dossiers: hide the Edit button on the actual edit page

Otherwise the "Edit" button may be confused for a "Save" button.
This commit is contained in:
Pierre de La Morinerie 2019-07-29 10:49:49 +02:00
parent 7b345365fd
commit e99edda7b1

View file

@ -13,8 +13,8 @@
- if current_user.owns?(dossier)
.header-actions
= render partial: 'invites/dropdown', locals: { dossier: dossier }
- if dossier.can_be_updated_by_user?
= link_to "Modifier mon dossier", modifier_dossier_path(dossier.id), class: 'button accepted edit-form', 'title'=> "Vous pouvez modifier votre dossier tant qu'il n'est passé en instruction"
- if dossier.can_be_updated_by_user? && !current_page?(modifier_dossier_path(dossier))
= link_to "Modifier mon dossier", modifier_dossier_path(dossier), class: 'button accepted edit-form', 'title'=> "Vous pouvez modifier votre dossier tant qu'il n'est passé en instruction"
%ul.tabs
= dynamic_tab_item('Résumé', dossier_path(dossier))