2017-02-16 20:12:13 +03:00
|
|
|
<div class="apps-grid-cell">
|
2020-01-16 18:14:03 +03:00
|
|
|
<LinkTo @route="staff.user" @model={{user.slug}} data-test-user-id={{user.id}}>
|
2017-02-16 20:12:13 +03:00
|
|
|
<article class="apps-card-app">
|
|
|
|
<div class="apps-card-left">
|
2018-05-14 15:04:53 +03:00
|
|
|
<span class="user-list-item-figure" style={{background-image-style user.profileImageUrl}}>
|
2017-02-16 20:12:13 +03:00
|
|
|
<span class="hidden">Photo of {{user.name}}</span>
|
|
|
|
</span>
|
|
|
|
<div class="apps-card-meta">
|
|
|
|
<h3 class="apps-card-app-title">{{user.name}}</h3>
|
|
|
|
<p class="apps-card-app-desc">Last seen: {{component.lastLoginUTC}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="apps-card-right">
|
|
|
|
<div class="apps-configured">
|
2020-03-05 14:12:09 +03:00
|
|
|
{{#if user.isSuspended}}
|
|
|
|
<span class="gh-badge author">Suspended</span>
|
|
|
|
{{else}}
|
|
|
|
{{#if user.isLocked}}
|
|
|
|
<span class="gh-badge author">Locked</span>
|
|
|
|
{{/if}}
|
|
|
|
{{#unless this.session.user.isAuthorOrContributor}}
|
|
|
|
{{#each user.roles as |role|}}
|
|
|
|
<span class="gh-badge {{role.lowerCaseName}}" data-test-role-name>{{role.name}}</span>
|
|
|
|
{{/each}}
|
|
|
|
{{/unless}}
|
2017-07-22 00:21:27 +03:00
|
|
|
{{/if}}
|
2018-03-19 12:57:31 +03:00
|
|
|
{{svg-jar "arrow-right"}}
|
2017-02-16 20:12:13 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</article>
|
2020-01-16 18:14:03 +03:00
|
|
|
</LinkTo>
|
2015-06-30 16:21:03 +03:00
|
|
|
</div>
|