2020-09-14 13:34:09 +03:00
|
|
|
<div class="apps-grid-cell tooltip-centered" data-tooltip="{{ if user.isLocked 'Requires password reset to log in'}}">
|
2021-10-18 14:27:42 +03:00
|
|
|
<LinkTo @route={{if (feature "offers") "settings.staff.user" "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">
|
2021-01-07 19:11:49 +03:00
|
|
|
{{#if user.isLocked}}
|
|
|
|
<span class="gh-badge locked">{{svg-jar "lock"}}</span>
|
|
|
|
{{/if}}
|
2017-02-16 20:12:13 +03:00
|
|
|
<div class="apps-configured">
|
2020-03-05 14:12:09 +03:00
|
|
|
{{#if user.isSuspended}}
|
2020-09-03 14:28:43 +03:00
|
|
|
<span class="gh-badge suspended">Suspended</span>
|
2020-03-05 14:12:09 +03:00
|
|
|
{{else}}
|
|
|
|
{{#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}}
|
2021-01-07 19:11:49 +03:00
|
|
|
{{svg-jar "arrow-right" class="gh-user-arrow-icon"}}
|
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>
|