2016-03-05 22:43:05 +01:00
|
|
|
%ul.no-list
|
2019-09-04 04:13:54 +02:00
|
|
|
- if user_signed_in?
|
|
|
|
%li= link_to t('settings.account_settings'), edit_user_registration_path
|
|
|
|
- else
|
|
|
|
- if controller_name != 'sessions'
|
2022-01-23 15:52:58 +01:00
|
|
|
%li= link_to_login t('auth.login')
|
2016-03-05 22:43:05 +01:00
|
|
|
|
2019-09-04 04:13:54 +02:00
|
|
|
- if controller_name != 'registrations'
|
|
|
|
%li= link_to t('auth.register'), available_sign_up_path
|
2016-03-05 22:43:05 +01:00
|
|
|
|
2019-09-04 04:13:54 +02:00
|
|
|
- if controller_name != 'passwords' && controller_name != 'registrations'
|
|
|
|
%li= link_to t('auth.forgot_password'), new_user_password_path
|
2016-03-05 22:43:05 +01:00
|
|
|
|
2019-09-18 16:37:27 +02:00
|
|
|
- if controller_name != 'confirmations' && (!user_signed_in? || !current_user.confirmed? || current_user.unconfirmed_email.present?)
|
2019-09-04 04:13:54 +02:00
|
|
|
%li= link_to t('auth.didnt_get_confirmation'), new_user_confirmation_path
|
|
|
|
|
2023-04-16 07:01:24 +02:00
|
|
|
- if user_signed_in?
|
2019-09-04 04:13:54 +02:00
|
|
|
%li= link_to t('auth.logout'), destroy_user_session_path, data: { method: :delete }
|