1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/settings/_nav_sidebar.html.erb

17 lines
751 B
Text
Raw Normal View History

2018-12-07 21:06:26 -05:00
<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}" %>
2018-12-11 19:28:52 -05:00
<%= 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}" %>
2018-12-11 19:28:52 -05:00
<%= 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}" %>
2018-12-07 21:06:26 -05:00
</div>