diff options
| author | Guillaume | 2017-09-28 12:32:09 +0200 | 
|---|---|---|
| committer | Guillaume | 2017-09-28 12:32:09 +0200 | 
| commit | 2867f7b992ea38934f69e86dd8d6dc9cc95b0afe (patch) | |
| tree | bdc758bfd41f55e9ce08203e011a79eb2e84bd35 /app/views/compliance_control_sets | |
| parent | 290516ea175158ffb388734375c17143dfb794f5 (diff) | |
| download | chouette-core-2867f7b992ea38934f69e86dd8d6dc9cc95b0afe.tar.bz2 | |
fix locales translations, remove unused array for date filters
Diffstat (limited to 'app/views/compliance_control_sets')
| -rw-r--r-- | app/views/compliance_control_sets/index.html.slim | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/app/views/compliance_control_sets/index.html.slim b/app/views/compliance_control_sets/index.html.slim index aee1595ef..ecb4eb75b 100644 --- a/app/views/compliance_control_sets/index.html.slim +++ b/app/views/compliance_control_sets/index.html.slim @@ -19,7 +19,7 @@          .col-lg-12            .select_table              = table_builder_2 @compliance_control_sets, -                    [ \ +              [ \                  TableBuilderHelper::Column.new( \                    key: :name, \                    attribute: 'name', \ @@ -28,7 +28,7 @@                      end \                  ), \                  TableBuilderHelper::Column.new( \ -                  key: :assignment, \ +                  key: :assigned_to, \                    attribute: 'assignment' \                  ), \                  TableBuilderHelper::Column.new( \ @@ -44,9 +44,9 @@                    attribute: Proc.new { |n| l(n.updated_at, format: :long) if n.updated_at }, \                  ) \                ], -                    sortable: true, -                    links: [:show], -                    cls: 'table has-filter has-search' +              sortable: true, +              links: [:show], +              cls: 'table has-filter has-search'      - unless @compliance_control_sets.any?        .row.mt-xs          .col-lg-12 | 
