2013-10-28 05:27:07 +00:00
|
|
|
include ./profile
|
2013-10-31 21:37:04 +00:00
|
|
|
include ./social/index
|
2013-10-28 05:27:07 +00:00
|
|
|
include ./inventory/index
|
|
|
|
|
include ./settings
|
|
|
|
|
|
|
|
|
|
script(id='partials/options.html', type="text/ng-template")
|
2013-10-27 00:23:52 +00:00
|
|
|
.grid
|
|
|
|
|
.module.full-width
|
|
|
|
|
span.option-box.pull-right.wallet
|
|
|
|
|
include ../shared/gems
|
|
|
|
|
|
|
|
|
|
ul.nav.nav-tabs
|
2013-10-28 05:27:07 +00:00
|
|
|
li(ng-class="{ active: $state.includes('options.profile') }")
|
|
|
|
|
a(ui-sref='options.profile')
|
2014-01-31 18:47:48 +00:00
|
|
|
span.glyphicon.glyphicon-user
|
2014-02-02 15:06:30 +00:00
|
|
|
|
|
2014-01-19 18:50:26 +00:00
|
|
|
=env.t('profile')
|
2013-10-31 21:37:04 +00:00
|
|
|
li(ng-class="{ active: $state.includes('options.social') }")
|
|
|
|
|
a(ui-sref='options.social')
|
2014-01-31 18:47:48 +00:00
|
|
|
span.glyphicon.glyphicon-heart
|
2014-02-02 15:06:30 +00:00
|
|
|
|
|
2014-01-19 18:50:26 +00:00
|
|
|
=env.t('social')
|
2013-10-28 05:27:07 +00:00
|
|
|
li(ng-class="{ active: $state.includes('options.inventory') }", ng-if='user.flags.dropsEnabled')
|
|
|
|
|
a(ui-sref='options.inventory')
|
2014-01-31 18:47:48 +00:00
|
|
|
span.glyphicon.glyphicon-gift
|
2014-02-02 15:06:30 +00:00
|
|
|
|
|
2014-01-19 18:50:26 +00:00
|
|
|
=env.t('inventory')
|
2013-10-28 05:27:07 +00:00
|
|
|
li(ng-class="{ active: $state.includes('options.settings') }")
|
|
|
|
|
a(ui-sref='options.settings')
|
2014-01-31 18:47:48 +00:00
|
|
|
span.glyphicon.glyphicon-wrench
|
2014-02-02 15:06:30 +00:00
|
|
|
|
|
2014-01-19 18:50:26 +00:00
|
|
|
=env.t('settings')
|
2013-10-27 00:23:52 +00:00
|
|
|
|
|
|
|
|
.tab-content
|
2013-10-28 05:27:07 +00:00
|
|
|
.tab-pane.active
|
|
|
|
|
div(ui-view)
|