From b1cfd7e1bc8cc4152f95b3157258a7cb4c58c395 Mon Sep 17 00:00:00 2001 From: gregoirenovel Date: Mon, 25 Sep 2017 10:46:09 +0200 Subject: [PATCH] Extract the folders table header field into a partial --- .../new_gestionnaire/procedures/_header_field.html.haml | 2 ++ app/views/new_gestionnaire/procedures/show.html.haml | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 app/views/new_gestionnaire/procedures/_header_field.html.haml diff --git a/app/views/new_gestionnaire/procedures/_header_field.html.haml b/app/views/new_gestionnaire/procedures/_header_field.html.haml new file mode 100644 index 000000000..0b768cf15 --- /dev/null +++ b/app/views/new_gestionnaire/procedures/_header_field.html.haml @@ -0,0 +1,2 @@ +%th{ class: classname } + = field['label'] diff --git a/app/views/new_gestionnaire/procedures/show.html.haml b/app/views/new_gestionnaire/procedures/show.html.haml index 417bab614..00b2cd54e 100644 --- a/app/views/new_gestionnaire/procedures/show.html.haml +++ b/app/views/new_gestionnaire/procedures/show.html.haml @@ -55,12 +55,13 @@ %table.table.dossiers-table.hoverable %thead %tr - %th.number-col Nº dossier + = render partial: "header_field", locals: { field: { "label" => "Nº dossier", "table" => "self", "column" => "id" }, classname: "number-col" } - @displayed_fields.each do |field| - %th= field['label'] + = render partial: "header_field", locals: { field: field, classname: "" } + + = render partial: "header_field", locals: { field: { "label" => "Statut", "table" => "self", "column" => "state" }, classname: "status-col" } - %th.status-col Statut %th.follow-col %span.button.dropdown Personnaliser