1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
- breadcrumb :referential_companies, @referential
.page_content
.container-fluid
- if params[:q].present? or @companies.any?
.row
.col-lg-12
= search_form_for @q, url: referential_companies_path(@referential), html: {method: :get}, class: 'form form-filter' do |f|
.input-group.search_bar
= f.text_field :name_or_objectid_cont, placeholder: t('.name_or_objectid'), class: 'form-control'
span.input-group-btn
button.btn.btn-default#search-btn type="submit"
span.fa.fa-search
- if @companies.any?
.row
.col-lg-12
= table_builder_2 @companies,
[ \
TableBuilderHelper::Column.new( \
name: t('id_codif'), \
attribute: Proc.new { |n| n.try(:objectid).try(:local_id) }, \
sortable: false \
), \
TableBuilderHelper::Column.new( \
key: :name, \
attribute: 'name', \
link_to: lambda do |company| \
referential_company_path(@referential, company) \
end \
), \
TableBuilderHelper::Column.new( \
key: :phone, \
attribute: 'phone' \
), \
TableBuilderHelper::Column.new( \
key: :email, \
attribute: 'email' \
), \
TableBuilderHelper::Column.new( \
key: :url, \
attribute: 'url' \
) \
],
cls: 'table has-search'
= new_pagination @companies, 'pull-right'
- unless @companies.any?
.row
.col-lg-12
= replacement_msg t('companies.search_no_results')
|