= image_tag invite.user.account.avatar.url(:original), alt: '', width: 16, height: 16, class: 'avatar'
%span.username= invite.user.account.username
- - if invite.expired?
- %td{ colspan: 2 }
- = t('invites.expired')
- - else
+ - if invite.valid_for_use?
%td
= fa_icon 'user fw'
= invite.uses
- else
%time.formatted{ datetime: invite.expires_at.iso8601, title: l(invite.expires_at) }
= l invite.expires_at
+ - else
+ %td{ colspan: 2 }
+ = t('invites.expired')
+
%td
- - if !invite.expired? && policy(invite).destroy?
+ - if invite.valid_for_use? && policy(invite).destroy?
= table_link_to 'times', t('invites.delete'), admin_invite_path(invite), method: :delete
%input{ type: :text, maxlength: '999', spellcheck: 'false', readonly: 'true', value: public_invite_url(invite_code: invite.code) }
%button{ type: :button }= t('generic.copy')
- - if invite.expired?
- %td{ colspan: 2 }
- = t('invites.expired')
- - else
+ - if invite.valid_for_use?
%td
= fa_icon 'user fw'
= invite.uses
- else
%time.formatted{ datetime: invite.expires_at.iso8601, title: l(invite.expires_at) }
= l invite.expires_at
+ - else
+ %td{ colspan: 2 }
+ = t('invites.expired')
%td
- - if !invite.expired? && policy(invite).destroy?
+ - if invite.valid_for_use? && policy(invite).destroy?
= table_link_to 'times', t('invites.delete'), invite_path(invite), method: :delete