about summary refs log tree commit diff
path: root/app/views/admin/custom_emojis/_custom_emoji.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/custom_emojis/_custom_emoji.html.haml')
-rw-r--r--app/views/admin/custom_emojis/_custom_emoji.html.haml35
1 files changed, 0 insertions, 35 deletions
diff --git a/app/views/admin/custom_emojis/_custom_emoji.html.haml b/app/views/admin/custom_emojis/_custom_emoji.html.haml
deleted file mode 100644
index 526c844e9..000000000
--- a/app/views/admin/custom_emojis/_custom_emoji.html.haml
+++ /dev/null
@@ -1,35 +0,0 @@
-.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
-      = custom_emoji_tag(custom_emoji, animate = current_account&.user&.setting_auto_play_gif)
-
-    .batch-table__row__content__text
-      %samp= ":#{custom_emoji.shortcode}:"
-
-      - if custom_emoji.local?
-        %span.account-role.bot= custom_emoji.category&.name || t('admin.custom_emojis.uncategorized')
-
-    .batch-table__row__content__extra
-      - if custom_emoji.local?
-        = t('admin.accounts.location.local')
-      - else
-        = custom_emoji.domain
-
-        - if custom_emoji.local_counterpart.present?
-          •
-          = t('admin.accounts.location.local')
-
-      %br/
-
-      - if custom_emoji.disabled?
-        = t('admin.custom_emojis.disabled')
-      - else
-        = 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')