Merge pull request #6029 from betagouv/back-avis-btn
Ajoute l'onglet avis sur l'interface instructeur
This commit is contained in:
commit
95931bea50
1 changed files with 14 additions and 2 deletions
|
@ -32,9 +32,21 @@
|
||||||
- if current_instructeur.procedures.count > 0
|
- if current_instructeur.procedures.count > 0
|
||||||
%li
|
%li
|
||||||
= active_link_to "Démarches", instructeur_procedures_path, active: ['dossiers','procedures'].include?(controller_name), class: 'tab-link'
|
= active_link_to "Démarches", instructeur_procedures_path, active: ['dossiers','procedures'].include?(controller_name), class: 'tab-link'
|
||||||
|
- if current_instructeur.user.expert && current_expert.avis.count > 0
|
||||||
|
%li
|
||||||
|
= active_link_to expert_all_avis_path, active: controller_name == 'avis', class: 'tab-link' do
|
||||||
|
Avis
|
||||||
|
- avis_counter = current_expert.avis.without_answer.count
|
||||||
|
- if avis_counter > 0
|
||||||
|
%span.badge.warning= avis_counter
|
||||||
|
|
||||||
- if nav_bar_profile == :expert && expert_signed_in?
|
- if nav_bar_profile == :expert && expert_signed_in?
|
||||||
- if current_expert.avis.count > 0
|
|
||||||
%ul.header-tabs
|
%ul.header-tabs
|
||||||
|
- if current_expert.user.instructeur && current_instructeur.procedures.count > 0
|
||||||
|
%li
|
||||||
|
= active_link_to "Démarches", instructeur_procedures_path, active: ['dossiers','procedures'].include?(controller_name), class: 'tab-link'
|
||||||
|
|
||||||
|
- if current_expert.avis.count > 0
|
||||||
%li
|
%li
|
||||||
= active_link_to expert_all_avis_path, active: controller_name == 'avis', class: 'tab-link' do
|
= active_link_to expert_all_avis_path, active: controller_name == 'avis', class: 'tab-link' do
|
||||||
Avis
|
Avis
|
||||||
|
|
Loading…
Reference in a new issue