mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
7b626baf3f
No issue
- Relates to 447c7d77ec (diff-acda43902fe5a16fa255b16e7b32e6d0R14)
- Adds class to the invited users container, used only for spacing right now
62 lines
2.3 KiB
Handlebars
62 lines
2.3 KiB
Handlebars
<header>
|
|
{{#link-to 'settings' class='button-back button'}}Back{{/link-to}}
|
|
<h2 class="title">Users</h2>
|
|
<section class="page-actions">
|
|
<button class="button-add" {{action "openModal" "invite-new-user" this}} >New User</button>
|
|
</section>
|
|
</header>
|
|
|
|
<section class="content settings-users">
|
|
{{#if invitedUsers}}
|
|
|
|
<section class="object-list invited-users">
|
|
|
|
<h4 class="object-list-title">Invited users</h4>
|
|
|
|
{{#each invitedUsers itemController="settings/users/user"}}
|
|
<div class="object-list-item">
|
|
<span class="object-list-item-icon icon-mail">ic</span>
|
|
|
|
<div class="object-list-item-body">
|
|
<span class="name">{{email}}</span><br>
|
|
<span class="description">Invitation sent: {{created_at}}</span>
|
|
</div>
|
|
<aside class="object-list-item-aside">
|
|
<a class="object-list-action" href="#" {{action "revoke"}}>Revoke</a>
|
|
<a class="object-list-action" href="#" {{action "resend"}}>Resend</a>
|
|
</aside>
|
|
</div>
|
|
{{/each}}
|
|
|
|
</section>
|
|
|
|
{{/if}}
|
|
|
|
<section class="object-list">
|
|
|
|
<h4 class="object-list-title">Active users</h4>
|
|
|
|
{{#each activeUsers itemController="settings/users/user"}}
|
|
{{#link-to 'settings.users.user' this class="object-list-item" }}
|
|
<img class="object-list-item-figure"
|
|
src="{{unbound imageUrl}}"
|
|
alt="Photo of {{unbound name}}" />
|
|
|
|
<div class="object-list-item-body">
|
|
<span class="name">
|
|
{{user.name}}
|
|
</span>
|
|
<br>
|
|
<span class="description">Last seen: {{unbound last_login}}</span>
|
|
</div>
|
|
<!-- @TODO: replace these with real access level once API and data model are updated -->
|
|
<aside class="object-list-item-aside">
|
|
<span class="role-label editor">Editor</span>
|
|
<span class="role-label owner">Owner</span>
|
|
</aside>
|
|
{{/link-to}}
|
|
{{/each}}
|
|
|
|
</section>
|
|
</section>
|