2019-09-09 22:44:17 +02:00
|
|
|
.batch-table__row
|
|
|
|
%label.batch-table__row__select.batch-table__row__select--aligned.batch-checkbox
|
|
|
|
= f.check_box :custom_emoji_ids, { multiple: true, include_hidden: false }, custom_emoji.id
|
|
|
|
.batch-table__row__content.batch-table__row__content--with-image
|
|
|
|
.batch-table__row__content__image
|
2022-06-09 22:25:23 +02:00
|
|
|
= custom_emoji_tag(custom_emoji)
|
2019-09-09 22:44:17 +02:00
|
|
|
|
|
|
|
.batch-table__row__content__text
|
2023-10-25 14:01:00 +02:00
|
|
|
%samp :#{custom_emoji.shortcode}:
|
2019-09-09 22:44:17 +02:00
|
|
|
|
|
|
|
- if custom_emoji.local?
|
2023-07-27 16:05:24 +02:00
|
|
|
%span.information-badge= custom_emoji.category&.name || t('admin.custom_emojis.uncategorized')
|
2019-09-09 22:44:17 +02:00
|
|
|
|
|
|
|
.batch-table__row__content__extra
|
|
|
|
- if custom_emoji.local?
|
|
|
|
= t('admin.accounts.location.local')
|
2017-10-27 16:11:30 +02:00
|
|
|
- else
|
2019-09-09 22:44:17 +02:00
|
|
|
= custom_emoji.domain
|
|
|
|
|
2019-10-10 02:21:52 +02:00
|
|
|
- if custom_emoji.local_counterpart.present?
|
|
|
|
•
|
|
|
|
= t('admin.accounts.location.local')
|
|
|
|
|
2019-09-09 22:44:17 +02:00
|
|
|
%br/
|
|
|
|
|
|
|
|
- if custom_emoji.disabled?
|
|
|
|
= t('admin.custom_emojis.disabled')
|
2017-11-07 14:49:32 +01:00
|
|
|
- else
|
2019-09-09 22:44:17 +02:00
|
|
|
= t('admin.custom_emojis.enabled')
|
|
|
|
- if custom_emoji.local?
|
|
|
|
•
|
|
|
|
- if custom_emoji.visible_in_picker?
|
|
|
|
= t('admin.custom_emojis.listed')
|
|
|
|
- else
|
|
|
|
= t('admin.custom_emojis.unlisted')
|