mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 09:31:13 +01:00
23 lines
691 B
Text
23 lines
691 B
Text
- content_for :page_title do
|
|
= t('admin.instances.title')
|
|
|
|
= form_tag admin_instances_url, method: 'GET', class: 'simple_form' do
|
|
.fields-group
|
|
- %i(domain_name).each do |key|
|
|
.input.string.optional
|
|
= text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.instances.#{key}")
|
|
|
|
.actions
|
|
%button= t('admin.instances.search')
|
|
= link_to t('admin.instances.reset'), admin_instances_path, class: 'button negative'
|
|
|
|
.table-wrapper
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th= t('admin.instances.domain_name')
|
|
%th= t('admin.instances.account_count')
|
|
%tbody
|
|
= render @instances
|
|
|
|
= paginate paginated_instances
|