mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
* challenges are not showing, this could be related to the bo-if directive being broken https://github.com/Pasvaz/bindonce/issues/29 * NPCs lost their color because bindonce seems to have a major issue on tags that are using both interpolation and the bo-class directives
16 lines
No EOL
836 B
Text
16 lines
No EOL
836 B
Text
// ------ Challenges -------
|
|
.modal(style='position: relative;top: auto;left: auto;right: auto;margin: 0 auto 20px;z-index: 1;max-width: 100%;')
|
|
.modal-header
|
|
h3
|
|
| Challenges
|
|
a.pull-right(target='_blank', href='https://trello.com/card/challenges-individual-party-guild-public/50e5d3684fe3a7266b0036d6/58')
|
|
i.icon-question-sign
|
|
.modal-body(bindonce='group.challenges')
|
|
div(ng-if='group.challenges.length > 0')
|
|
table.table.table-striped
|
|
tr(ng-repeat='challenge in group.challenges')
|
|
td
|
|
a(ui-sref='options.social.challenges.detail({cid:challenge._id})') {{challenge.name}}
|
|
div(ng-if='group.challenges.length == 0')
|
|
p.
|
|
No challenges yet, visit <a class='label' ui-sref='options.social.challenges'><i class=icon-bullhorn></i> Challenges</a> to create one. |