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
|
|
|
|
|
span {{username(profile.auth, profile.profile.name)}}
|
|
|
|
|
span(ng-show='profile.backer.contributor') - {{profile.backer.contributor}}
|
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-07 16:45:39 +00:00
|
|
|
ul(ng-show='profile.profile.websites')
|
2013-09-09 17:27:25 +00:00
|
|
|
li(ng-repeat='website in profile.profile.websites')
|
|
|
|
|
a(href='{{website}}', target='_blank') {{website}}
|
2013-09-09 23:04:46 +00:00
|
|
|
ul.well.unstyled(ng-if='profile.auth.timestamps')
|
|
|
|
|
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
|