mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
UX: show invite sent date on pending tab
This commit is contained in:
parent
2f6788342e
commit
b1488b430a
2 changed files with 5 additions and 2 deletions
|
@ -40,7 +40,8 @@
|
|||
<th>{{i18n 'user.invited.days_visited'}}</th>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
<th colspan="7">{{i18n 'user.invited.user'}}</th>
|
||||
<th colspan="1">{{i18n 'user.invited.user'}}</th>
|
||||
<th colspan="6">{{i18n 'user.invited.sent'}}</th>
|
||||
{{/if}}
|
||||
</tr>
|
||||
{{#each invite in model.invites}}
|
||||
|
@ -62,7 +63,8 @@
|
|||
{{/if}}
|
||||
{{else}}
|
||||
<td>{{unbound invite.email}}</td>
|
||||
<td colspan='6'>
|
||||
<td>{{format-date invite.created_at}}</td>
|
||||
<td colspan='5'>
|
||||
{{#if invite.expired}}
|
||||
{{i18n 'user.invited.expired'}}
|
||||
|
||||
|
|
|
@ -605,6 +605,7 @@ en:
|
|||
search: "type to search invites..."
|
||||
title: "Invites"
|
||||
user: "Invited User"
|
||||
sent: "Sent"
|
||||
none: "You haven't invited anyone here yet."
|
||||
truncated: "Showing the first {{count}} invites."
|
||||
redeemed: "Redeemed Invites"
|
||||
|
|
Loading…
Reference in a new issue