You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
691 B
23 lines
691 B
- 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
|
|
|