2013-09-07 16:45:39 +00:00
|
|
|
div(ng-controller='MemberModalCtrl')
|
2013-09-08 10:13:55 +00:00
|
|
|
#memberModal(modal='modals.member')
|
2013-09-07 16:55:15 +00:00
|
|
|
.modal-header
|
|
|
|
|
h3
|
2013-10-29 01:20:21 +00:00
|
|
|
span {{profile.profile.name}}
|
2013-11-07 19:24:38 +00:00
|
|
|
span(ng-if='profile.contributor.level') - {{contribText(profile.contributor, profile.backer)}}
|
2013-09-07 16:45:39 +00:00
|
|
|
.modal-body
|
|
|
|
|
.row-fluid
|
|
|
|
|
.span6
|
|
|
|
|
img(ng-show='profile.profile.imageUrl', ng-src='{{profile.profile.imageUrl}}')
|
2013-09-09 18:06:36 +00:00
|
|
|
markdown(ng-show='profile.profile.blurb', ng-model='profile.profile.blurb')
|
2013-09-09 23:12:16 +00:00
|
|
|
ul.muted.unstyled(ng-if='profile.auth.timestamps', style='margin-top:10px;')
|
2013-11-07 21:05:34 +00:00
|
|
|
li {{profile._id}}
|
2013-09-09 23:12:16 +00:00
|
|
|
li(ng-show='profile.auth.timestamps.created') - Member since {{timestamp(profile.auth.timestamps.created)}} -
|
|
|
|
|
li(ng-show='profile.auth.timestamps.loggedin') - Last logged in {{timestamp(profile.auth.timestamps.loggedin)}} -
|
2013-09-07 16:45:39 +00:00
|
|
|
h3 Stats
|
2013-09-07 16:55:15 +00:00
|
|
|
include ../profiles/stats
|
2013-09-07 16:45:39 +00:00
|
|
|
.span6
|
2013-09-07 16:55:15 +00:00
|
|
|
include ../header/avatar
|
2013-09-07 16:45:39 +00:00
|
|
|
h3 Achievements
|
2013-09-07 17:38:43 +00:00
|
|
|
include ../profiles/achievements
|
2013-09-07 16:45:39 +00:00
|
|
|
.modal-footer
|
|
|
|
|
button.btn.btn-default(ng-click='modals.member = false') Ok
|