Extract the folders table header field into a partial
This commit is contained in:
parent
fcd5b46811
commit
b1cfd7e1bc
2 changed files with 6 additions and 3 deletions
|
@ -0,0 +1,2 @@
|
|||
%th{ class: classname }
|
||||
= field['label']
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue