blob: fc1001e8256ae574ad28ca4210afa29a44f4afdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- @show_navigation = false
= form_tag users_path, :method => :get, :class => "form-search" do
.input-append
= text_field_tag :query, params[:query], :id => 'user-typeahead', :class => "search-query", :autocomplete => :off
%button.btn{:type => :submit}= t(:search)
%table.table.table-striped
%tr
%th= t(:username)
%th= t(:created)
%th= t(:updated)
= render @users.all
|