mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
cb2f911b07
Closes #3533, Closes #3547, Closes #3531 - invite-new-user always resets role to author now, allowing for multiple invites on one load - Added confirm action when hitting return in INUModal's email input - Don't pass users as the model to invite-new-user-modal - Move invite-new-user reset to a `finally` clause - invite-new-user always closes on a confirm
68 lines
2.6 KiB
Handlebars
68 lines
2.6 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"}} >New User</button>
|
|
</section>
|
|
</header>
|
|
|
|
{{#view "settings/users/users-list-view" tagName="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>
|
|
{{#if pending}}
|
|
<span class="red">Invitation not sent - please try again</span>
|
|
{{else}}
|
|
<span class="description">Invitation sent: {{created_at}}</span>
|
|
{{/if}}
|
|
</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" }}
|
|
<span class="object-list-item-figure" {{bind-attr style=image}}>
|
|
<span class="hidden">Photo of {{unbound name}}</span>
|
|
</span>
|
|
|
|
<div class="object-list-item-body">
|
|
<span class="name">
|
|
{{name}}
|
|
</span>
|
|
<br>
|
|
<span class="description">Last seen: {{unbound last_login}}</span>
|
|
</div>
|
|
<aside class="object-list-item-aside">
|
|
{{#unless isAuthor}}
|
|
{{#each roles}}
|
|
<span class="role-label {{unbound lowerCaseName}}">{{name}}</span>
|
|
{{/each}}
|
|
{{/unless}}
|
|
</aside>
|
|
{{/link-to}}
|
|
{{/each}}
|
|
|
|
</section>
|
|
{{/view}}
|