You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
606 B
17 lines
606 B
%tr |
|
%td |
|
= invite.uses |
|
= " / #{invite.max_uses}" unless invite.max_uses.nil? |
|
%td |
|
- if invite.expired? |
|
= t('invites.expired') |
|
- else |
|
- if invite.expires_at.nil? |
|
∞ |
|
- else |
|
%time.formatted{ datetime: invite.expires_at.iso8601, title: l(invite.expires_at) } |
|
= l invite.expires_at |
|
%td= table_link_to 'link', public_invite_url(invite_code: invite.code), public_invite_url(invite_code: invite.code) |
|
%td |
|
- if !invite.expired? && policy(invite).destroy? |
|
= table_link_to 'times', t('invites.delete'), invite_path(invite), method: :delete
|
|
|