-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97e4cf4
commit d647d07
Showing
4 changed files
with
29 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,40 @@ | ||
%nav.fr-translate.fr-nav{ role: "navigation", "aria-label"=> t('menu_aria_label', scope: [:layouts]) } | ||
.fr-nav__item | ||
%button.account-btn.fr-translate__btn.fr-btn{ "aria-controls" => "account", "aria-expanded" => "false", :title => t('my_account', scope: [:layouts]) } | ||
= image_tag "icons/account-circle.svg", alt: t('my_account', scope: [:layouts]), width: 20, height: 20, loading: 'lazy' | ||
| ||
= " #{current_email}" | ||
#account.fr-collapse.fr-menu | ||
%ul.fr-menu__list | ||
- if super_admin_signed_in? | ||
%li | ||
= link_to manager_root_path, class: "fr-nav__link flex align-center" do | ||
= image_tag "icons/super-admin.svg", alt: '',width: 20, height: 20, class: 'mr-1' | ||
= t('go_superadmin', scope: [:layouts]) | ||
- if multiple_devise_profile_connect? | ||
%li | ||
= link_to "#", class: "fr-nav__link", "aria-current" => "true" do | ||
= t("connected_as_#{nav_bar_profile}", scope: [:layouts]) | ||
|
||
- if user_signed_in? && nav_bar_profile != :user | ||
%li | ||
= link_to dossiers_path, class: "fr-nav__link flex align-center" do | ||
= image_tag "icons/switch-profile.svg", alt: '', width: 20, height: 20, class: 'mr-1' | ||
= link_to dossiers_path, class: "fr-nav__link" do | ||
= t('go_user', scope: [:layouts]) | ||
- if instructeur_signed_in? && nav_bar_profile != :instructeur | ||
%li | ||
= link_to instructeur_procedures_path, class: "fr-nav__link flex align-center" do | ||
= image_tag "icons/switch-profile.svg", alt: '', width: 20, height: 20, class: 'mr-1' | ||
= link_to instructeur_procedures_path, class: "fr-nav__link" do | ||
= t('go_instructor', scope: [:layouts]) | ||
- if expert_signed_in? && nav_bar_profile != :expert | ||
%li | ||
= link_to expert_all_avis_path, class: "fr-nav__link flex align-center" do | ||
= image_tag "icons/switch-profile.svg", alt: '', width: 20, height: 20, class: 'mr-1' | ||
= link_to expert_all_avis_path, class: "fr-nav__link" do | ||
= t('go_expert', scope: [:layouts]) | ||
- if administrateur_signed_in? && nav_bar_profile != :administrateur | ||
%li | ||
= link_to admin_procedures_path, class: "fr-nav__link flex align-center" do | ||
= image_tag "icons/switch-profile.svg", alt: '', width: 20, height: 20, class: 'mr-1' | ||
= link_to admin_procedures_path, class: "fr-nav__link" do | ||
= t('go_admin', scope: [:layouts]) | ||
|
||
%li | ||
= link_to profil_path, class: "fr-nav__link flex align-center" do | ||
= image_tag "icons/switch-profile.svg", alt: '', width: 20, height: 20, class: 'mr-1' | ||
= link_to profil_path, class: "fr-nav__link" do | ||
= t('profile', scope: [:layouts]) | ||
%li | ||
= link_to destroy_user_session_path, method: :delete, class: "fr-nav__link flex align-center" do | ||
= image_tag "icons/sign-out.svg", alt: '', width: 20, height: 20, class: 'mr-1' | ||
= link_to destroy_user_session_path, method: :delete, class: "fr-nav__link" do | ||
= t('logout', scope: [:layouts]) | ||
|
||
- if super_admin_signed_in? | ||
%li | ||
= link_to manager_root_path, class: "fr-nav__link" do | ||
= t('go_superadmin', scope: [:layouts]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters