mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-28 11:41:31 -04:00
31 lines
809 B
Plaintext
31 lines
809 B
Plaintext
- content_for :title, "Settings for #{current_member.login_name}"
|
|
|
|
%ul.nav.nav-tabs{ role: 'tablist' }
|
|
%li.active
|
|
%a{ href: '#profile', role: 'tab', 'data-toggle': 'tab' }
|
|
Profile
|
|
%li
|
|
%a{ href: '#email', role: 'tab', 'data-toggle': 'tab' }
|
|
Email
|
|
%li
|
|
%a{ href: '#apps', role: 'tab', 'data-toggle': 'tab' }
|
|
Apps
|
|
%li
|
|
%a{ href: '#password', role: 'tab', 'data-toggle': 'tab' }
|
|
Password
|
|
%li
|
|
%a{ href: '#delete', role: 'tab', 'data-toggle': 'tab' }
|
|
Delete Account
|
|
|
|
.tab-content
|
|
.tab-pane.active#profile
|
|
= render partial: 'edit_profile'
|
|
.tab-pane#email
|
|
= render partial: 'edit_email'
|
|
.tab-pane#apps
|
|
= render partial: 'edit_apps'
|
|
.tab-pane#password
|
|
= render partial: 'edit_password'
|
|
.tab-pane#delete
|
|
= render partial: 'delete'
|