habitica-self-host/views/options/index.jade

33 lines
1.1 KiB
Text
Raw Normal View History

include ./profile
include ./social/index
include ./inventory/index
include ./settings
script(id='partials/options.html', type="text/ng-template")
.grid
.module.full-width
span.option-box.pull-right.wallet
include ../shared/gems
ul.nav.nav-tabs
li(ng-class="{ active: $state.includes('options.profile') }")
a(ui-sref='options.profile')
span.glyphicon.glyphicon-user
2014-01-19 18:50:26 +00:00
=env.t('profile')
li(ng-class="{ active: $state.includes('options.social') }")
a(ui-sref='options.social')
span.glyphicon.glyphicon-heart
2014-01-19 18:50:26 +00:00
=env.t('social')
li(ng-class="{ active: $state.includes('options.inventory') }", ng-if='user.flags.dropsEnabled')
a(ui-sref='options.inventory')
span.glyphicon.glyphicon-gift
2014-01-19 18:50:26 +00:00
=env.t('inventory')
li(ng-class="{ active: $state.includes('options.settings') }")
a(ui-sref='options.settings')
span.glyphicon.glyphicon-wrench
2014-01-19 18:50:26 +00:00
=env.t('settings')
.tab-content
.tab-pane.active
div(ui-view)