53 lines
No EOL
2.2 KiB
Text
53 lines
No EOL
2.2 KiB
Text
#backoffice_dossier_show
|
|
%h1#dossier_id.text-info{ :style => 'text-align:right'}
|
|
= "Dossier n°#{@facade.dossier.id}"
|
|
|
|
%div{:style => 'text-align:right'}
|
|
%h3{:class => 'text-success'}
|
|
= @facade.dossier.display_state
|
|
|
|
= render partial: 'follow_action'
|
|
|
|
= render partial: '/dossiers/infos_entreprise'
|
|
|
|
= render partial: '/dossiers/infos_dossier'
|
|
%br
|
|
|
|
%div
|
|
%ul{class: "nav nav-tabs", role: "tablist"}
|
|
%li{role: "presentation", class: "active"}
|
|
%a{href: "#commentaires", 'aria-controls' => "commentaires", role: "tab", 'data-toggle' => "tab"}
|
|
Commentaires
|
|
%li{role: "presentation"}
|
|
%a{href: "#commentaires_files", 'aria-controls' => "commentaires_files", role: "tab", 'data-toggle' => "tab"}
|
|
Fichiers
|
|
%li{role: "presentation"}
|
|
%a{href: "#invites", 'aria-controls' => "invites", role: "tab", 'data-toggle' => "tab"}
|
|
Invités
|
|
%li{role: "presentation"}
|
|
%a{href: "#followers", 'aria-controls' => "followers", role: "tab", 'data-toggle' => "tab"}
|
|
Abonnés
|
|
%li{role: "presentation"}
|
|
%a{href: "#champs_private", 'aria-controls' => "champs_private", role: "tab", 'data-toggle' => "tab"}
|
|
Formulaire
|
|
|
|
%div{class: "tab-content"}
|
|
%div{role: "tabpanel", class: "tab-pane fade in active", id:"commentaires"}
|
|
%h3 Flux de commentaires
|
|
%br
|
|
= render partial: '/users/recapitulatif/commentaires_flux'
|
|
%div{role: "tabpanel", class: "tab-pane fade", id:"commentaires_files"}
|
|
= render partial: '/dossiers/commentaires_files'
|
|
%div{role: "tabpanel", class: "tab-pane fade", id:"invites"}
|
|
= render partial: '/dossiers/invites'
|
|
%div{role: "tabpanel", class: "tab-pane fade", id:"followers"}
|
|
= render partial: 'followers'
|
|
%div{role: "tabpanel", class: "tab-pane fade", id:"champs_private"}
|
|
%h3 Formulaire privé
|
|
- unless @champs.nil?
|
|
= form_for @facade.dossier, url: {controller: 'backoffice/private_formulaires', action: :update, dossier_id: @facade.dossier.id}, remote: true do
|
|
= render partial: '/users/description/champs'
|
|
%br
|
|
= submit_tag :Enregistrer, {class: 'btn btn-success', style: 'float: right'}
|
|
%br
|
|
%br |