31 lines
863 B
Plaintext
31 lines
863 B
Plaintext
|
|
.search_pannel
|
|
|
|
=form_tag "", :method => "get", :remote => true, :onsubmit => "set_busy();" do
|
|
|
|
.row
|
|
.col-xs-5
|
|
.input-group
|
|
=text_field_tag :start, params[:start],:class => "form-control datepicker", :placeholder => "Début"
|
|
%span.input-group-addon.btn{:onclick => "$(this).prev('input').val('');"}
|
|
=ic(:times)
|
|
|
|
.col-xs-5
|
|
.input-group
|
|
=text_field_tag :stop, params[:stop],:class => "form-control datepicker", :placeholder => "Fin"
|
|
%span.input-group-addon.btn{:onclick => "$(this).prev('input').val('');"}
|
|
=ic(:times)
|
|
|
|
|
|
|
|
.col-xs-2
|
|
=submit_tag "filtrer", :class => "btn btn-default", :style => "margin-bottom: 10px;"
|
|
|
|
|
|
%table#articles.table
|
|
=render @articles
|
|
#pagination
|
|
= paginate @articles, :remote => true
|
|
|
|
|