mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-12 15:33:14 +00:00

Some checks are pending
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.1) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / Libvips tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.1) (push) Blocked by required conditions
Ruby Testing / Libvips tests (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.1) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.1, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
31 lines
944 B
Plaintext
31 lines
944 B
Plaintext
%tr{ id: dom_id(invite) }
|
|
%td
|
|
.input-copy
|
|
.input-copy__wrapper
|
|
= copyable_input value: public_invite_url(invite_code: invite.code)
|
|
%button{ type: :button }= t('generic.copy')
|
|
|
|
%td
|
|
.name-tag
|
|
= image_tag invite.user.account.avatar.url(:original), alt: '', width: 16, height: 16, class: 'avatar'
|
|
%span.username= invite.user.account.username
|
|
|
|
- if invite.valid_for_use?
|
|
%td
|
|
= material_symbol 'person'
|
|
= invite.uses
|
|
= " / #{invite.max_uses}" unless invite.max_uses.nil?
|
|
%td
|
|
- if invite.expires_at.nil?
|
|
∞
|
|
- 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.valid_for_use? && policy(invite).destroy?
|
|
= table_link_to 'close', t('invites.delete'), admin_invite_path(invite), method: :delete
|