aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/networks/index.html.slim
blob: b13c73e9eae82f3517a1eb73d257a2f9603e88eb (plain)
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
- breadcrumb :networks, @line_referential
- content_for :page_header_actions do
  - if policy(Chouette::Network).create?
    = link_to(t('networks.actions.new'), new_line_referential_network_path(@line_referential), class: 'btn btn-primary')

.page_content
  .container-fluid
    - if params[:q].present? or @networks.any?
      .row
        .col-lg-12
          = search_form_for @q, url: line_referential_networks_path(@line_referential), html: {method: :get}, class: 'form form-filter' do |f|
            .input-group.search_bar
              = f.search_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 @networks.any?
      .row
        .col-lg-12
          = table_builder_2 @networks,
            [ \
              TableBuilderHelper::Column.new( \
                name: 'Oid', \
                attribute: Proc.new { |n| n.try(:get_objectid).try(:short_id) }, \
                sortable: false \
              ),
              TableBuilderHelper::Column.new( \
                key: :name, \
                attribute: 'name', \
                link_to: lambda do |network| \
                  line_referential_network_path(@line_referential, network) \
                end \
              ), \
            ],
            links: [:show],
            cls: 'table has-search'

          = new_pagination @networks, 'pull-right'

    - unless @networks.any?
      .row.mt-xs
        .col-lg-12
          = replacement_msg t('networks.search_no_results')