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
  | 
/ PageHeader
= pageheader 'map-marker',
             t('lines.index.title'),
             'Lorem ipsum dolor sit amet',
             '',
             ((policy(Chouette::Line).create? && @line_referential.organisations.include?(current_organisation)) ? link_to(t('lines.actions.new'), new_line_referential_line_path(@line_referential), class: 'btn btn-primary') : '')
/ PageContent
.page_content
  .container-fluid
    - if params[:q].present? or @lines.any?
      .row.mb-sm
        .col-lg-12.text-right
          = new_pagination @lines
      .row
        .col-lg-12
          = search_form_for @q, url: line_referential_lines_path(@line_referential), html: {method: :get} do |f|
            .input-group.search_bar
              = f.search_field :name_or_objectid_cont, placeholder: t('lines.index.name_or_objectid'), class: 'form-control'
              span.input-group-btn
                button.btn.btn-default#search-btn type='submit'
                  span.fa.fa-search
          = render 'filters'
    - if @lines.any?
      .row
        .col-lg-12
          = table_builder @lines,
            { 'Oid' => Proc.new { |n| n.objectid.local_id },
            @lines.human_attribute_name(:name) => 'name', @lines.human_attribute_name(:network) => Proc.new { |n| n.try(:network).try(:name) },
            @lines.human_attribute_name(:company) => Proc.new { |n| n.try(:company).try(:name) },
            @lines.human_attribute_name(:transport_mode) => Proc.new { |n| n.transport_mode.nil? ? '-' :  t("enumerize.line.transport_mode.#{n.try(:transport_mode)}") },
            @lines.human_attribute_name(:transport_submode) => Proc.new { |n| n.transport_submode.nil? ? '-' :  t("enumerize.line.transport_submode.#{n.try(:transport_submode)}") } },
            [:show, :delete],
            [],
            'table has-filter has-search'
          = new_pagination @lines, 'pull-right'
    - unless @lines.any?
      .row.mt-xs
        .col-lg-12
          = replacement_msg t('referential_lines.search_no_results')
  |