16 lines
751 B
Text
16 lines
751 B
Text
<div class="list-group">
|
|
<%= link_to translate(:credentials, scope: %i[nav_tabs settings]),
|
|
edit_user_registration_path,
|
|
class: 'list-group-item list-group-item-action ' \
|
|
"#{:active if tab == :credentials}" %>
|
|
|
|
<%= link_to translate(:profile, scope: %i[nav_tabs settings]),
|
|
edit_settings_profile_path,
|
|
class: 'list-group-item list-group-item-action ' \
|
|
"#{:active if tab == :profile}" %>
|
|
|
|
<%= link_to translate(:telegram_contacts, scope: %i[nav_tabs settings]),
|
|
settings_telegram_contacts_path,
|
|
class: 'list-group-item list-group-item-action '\
|
|
"#{:active if tab == :telegram_contacts}" %>
|
|
</div>
|