2020-04-26 05:29:23 -07:00
|
|
|
%li.nav-item.dropdown.profile--image-dropdown
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.nav-link.dropdown-toggle.p-sm-0{ href: '#', data: { toggle: :dropdown } }
|
|
|
|
%img.avatar-md.d-none.d-sm-inline{ src: current_user.profile_picture.url(:small) }
|
2020-04-29 09:15:52 -07:00
|
|
|
%span.d-inline.d-sm-none
|
2015-02-12 08:50:13 -08:00
|
|
|
= current_user.screen_name
|
|
|
|
%b.caret
|
2020-04-19 14:13:39 -07:00
|
|
|
.dropdown-menu
|
2020-04-26 07:25:54 -07:00
|
|
|
%h6.dropdown-header.d-none.d-sm-block= current_user.screen_name
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.dropdown-item{ href: show_user_profile_path(current_user.screen_name) }
|
2020-04-19 14:13:39 -07:00
|
|
|
%i.fa.fa-fw.fa-user
|
|
|
|
= t('views.navigation.show')
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.dropdown-item{ href: edit_user_registration_path }
|
2020-04-19 14:13:39 -07:00
|
|
|
%i.fa.fa-fw.fa-cog
|
|
|
|
= t('views.navigation.settings')
|
|
|
|
.dropdown-divider
|
2020-04-19 13:35:58 -07:00
|
|
|
- if current_user.has_role?(:administrator)
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.dropdown-item{ href: rails_admin_path }
|
2020-04-19 14:13:39 -07:00
|
|
|
%i.fa.fa-fw.fa-cogs
|
|
|
|
= t('views.navigation.admin')
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.dropdown-item{ href: sidekiq_web_path }
|
2020-04-19 14:13:39 -07:00
|
|
|
%i.fa.fa-fw.fa-bar-chart
|
|
|
|
= t('views.navigation.sidekiq')
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.dropdown-item{ href: pghero_path }
|
2020-04-19 14:13:39 -07:00
|
|
|
%i.fa.fa-fw.fa-database
|
|
|
|
Database Monitor
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.dropdown-item{ href: announcement_index_path }
|
2020-04-25 04:14:01 -07:00
|
|
|
%i.fa.fa-fw.fa-info
|
|
|
|
Announcements
|
2020-04-19 14:13:39 -07:00
|
|
|
.dropdown-divider
|
2015-02-12 07:37:07 -08:00
|
|
|
- if current_user.mod?
|
2020-05-10 02:35:10 -07:00
|
|
|
%a.dropdown-item{ href: moderation_path }
|
2020-04-19 14:13:39 -07:00
|
|
|
%i.fa.fa-fw.fa-gavel
|
|
|
|
= t('views.navigation.moderation')
|
|
|
|
.dropdown-divider
|
2022-01-14 21:28:29 -08:00
|
|
|
= button_to destroy_user_session_path, method: 'delete', class: 'dropdown-item' do
|
2020-04-19 14:13:39 -07:00
|
|
|
%i.fa.fa-fw.fa-sign-out
|
|
|
|
= t 'views.sessions.destroy'
|