2017-09-18 18:52:38 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('admin.custom_emojis.title')
|
|
|
|
|
2017-10-05 14:42:05 -07:00
|
|
|
.filters
|
|
|
|
.filter-subset
|
|
|
|
%strong= t('admin.accounts.location.title')
|
|
|
|
%ul
|
|
|
|
%li= filter_link_to t('admin.accounts.location.all'), local: nil, remote: nil
|
|
|
|
%li
|
|
|
|
- if selected? local: '1', remote: nil
|
|
|
|
= filter_link_to t('admin.accounts.location.local'), {local: nil, remote: nil}, {local: '1', remote: nil}
|
|
|
|
- else
|
|
|
|
= filter_link_to t('admin.accounts.location.local'), local: '1', remote: nil
|
|
|
|
%li
|
|
|
|
- if selected? remote: '1', local: nil
|
|
|
|
= filter_link_to t('admin.accounts.location.remote'), {remote: nil, local: nil}, {remote: '1', local: nil}
|
|
|
|
- else
|
|
|
|
= filter_link_to t('admin.accounts.location.remote'), remote: '1', local: nil
|
|
|
|
|
2017-12-13 04:28:31 -08:00
|
|
|
= form_tag admin_custom_emojis_url, method: 'GET', class: 'simple_form' do
|
|
|
|
.fields-group
|
|
|
|
- Admin::FilterHelper::CUSTOM_EMOJI_FILTERS.each do |key|
|
|
|
|
- if params[key].present?
|
|
|
|
= hidden_field_tag key, params[key]
|
|
|
|
|
|
|
|
- %i(shortcode by_domain).each do |key|
|
|
|
|
.input.string.optional
|
|
|
|
= text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.custom_emojis.#{key}")
|
|
|
|
|
|
|
|
.actions
|
|
|
|
%button= t('admin.accounts.search')
|
2017-12-29 17:43:43 -08:00
|
|
|
= link_to t('admin.accounts.reset'), admin_custom_emojis_path, class: 'button negative'
|
2017-12-13 04:28:31 -08:00
|
|
|
|
2017-09-18 18:52:38 -07:00
|
|
|
.table-wrapper
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th= t('admin.custom_emojis.emoji')
|
|
|
|
%th= t('admin.custom_emojis.shortcode')
|
2017-10-05 14:42:05 -07:00
|
|
|
%th= t('admin.accounts.domain')
|
|
|
|
%th
|
|
|
|
%th
|
2017-09-18 18:52:38 -07:00
|
|
|
%th
|
|
|
|
%tbody
|
|
|
|
= render @custom_emojis
|
|
|
|
|
2017-10-05 14:42:05 -07:00
|
|
|
= paginate @custom_emojis
|
2017-09-18 18:52:38 -07:00
|
|
|
= link_to t('admin.custom_emojis.upload'), new_admin_custom_emoji_path, class: 'button'
|