mirror of
https://github.com/internetee/registry.git
synced 2025-07-01 16:53:37 +02:00
Allow per page configuration domains #2122
This commit is contained in:
parent
4b9e082712
commit
b8710b2411
3 changed files with 8 additions and 1 deletions
|
@ -26,6 +26,8 @@ class Admin::DomainsController < AdminController
|
||||||
params[:q][:name_matches] = n_cache # we don't want to show wildcards in search form
|
params[:q][:name_matches] = n_cache # we don't want to show wildcards in search form
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@domains = @domains.per(params[:results_per_page]) if params[:results_per_page].to_i > 0
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
|
|
@ -34,10 +34,14 @@
|
||||||
= f.label t(:valid_to_until)
|
= f.label t(:valid_to_until)
|
||||||
= f.search_field :valid_to_lteq, value: params[:q][:valid_to_lteq], class: 'form-control datepicker', placeholder: t(:valid_to_until)
|
= f.search_field :valid_to_lteq, value: params[:q][:valid_to_lteq], class: 'form-control datepicker', placeholder: t(:valid_to_until)
|
||||||
.row
|
.row
|
||||||
.col-md-9
|
.col-md-6
|
||||||
.form-group
|
.form-group
|
||||||
= label_tag t(:status)
|
= label_tag t(:status)
|
||||||
= select_tag 'q[statuses_contains]', options_for_select(DomainStatus::STATUSES, params[:q][:statuses_contains]), { multiple: true, placeholder: t(:choose), class: 'form-control js-combobox' }
|
= select_tag 'q[statuses_contains]', options_for_select(DomainStatus::STATUSES, params[:q][:statuses_contains]), { multiple: true, placeholder: t(:choose), class: 'form-control js-combobox' }
|
||||||
|
.col-md-3
|
||||||
|
.form-group
|
||||||
|
= label_tag t(:results_per_page)
|
||||||
|
= text_field_tag :results_per_page, params[:results_per_page], class: 'form-control', placeholder: t(:results_per_page)
|
||||||
.col-md-3{style: 'padding-top: 25px;'}
|
.col-md-3{style: 'padding-top: 25px;'}
|
||||||
%button.btn.btn-primary
|
%button.btn.btn-primary
|
||||||
|
|
||||||
|
|
|
@ -890,3 +890,4 @@ en:
|
||||||
valid_to_until: 'Valid to until'
|
valid_to_until: 'Valid to until'
|
||||||
registrant_ident: 'Registrant ident'
|
registrant_ident: 'Registrant ident'
|
||||||
contact_ident: 'Contact ident'
|
contact_ident: 'Contact ident'
|
||||||
|
results_per_page: 'Results per page'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue