mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 20:12:19 +00:00
40 lines
No EOL
1.2 KiB
HTML
40 lines
No EOL
1.2 KiB
HTML
{{#each _membersArray as :member}}
|
|
<app:modals:modal modalId="avatar-modal-{{:member.id}}">
|
|
<app:avatar:profile profile={{_members[:member.id]}} />
|
|
|
|
<!-- see above -->
|
|
<profile:>
|
|
<h2 class='profile-modal-header'>{{username(@profile.auth, @profile.profile.name)}}</h2>
|
|
<hr/>
|
|
<div class='row-fluid'>
|
|
<div class='span6'>
|
|
{{#if @profile.profile.imageUrl}}
|
|
<img src="{{@profile.profile.imageUrl}}" />
|
|
{{/}}
|
|
{{#if @profile.profile.blurb}}
|
|
<p>{{@profile.profile.blurb}}</p>
|
|
{{/}}
|
|
{{#if @profile.profile.websites}}
|
|
<ul>
|
|
{{#each @profile.profile.websites as :website}}
|
|
<li>{{:website}}</li>
|
|
{{/}}
|
|
</ul>
|
|
{{/}}
|
|
<h3>Stats</h3>
|
|
<app:avatar:profile-stats profile={{@profile}} />
|
|
</div>
|
|
<div class='span6'>
|
|
<h3>Achievements</h3>
|
|
<app:avatar:achievements profile={{@profile}} />
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<@footer>
|
|
<button data-dismiss="modal" class="btn btn-success">Ok</button>
|
|
</@footer>
|
|
</app:modals:modal>
|
|
{{/}} |