aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/workbenches/show.html.slim
diff options
context:
space:
mode:
authorjpl2017-03-31 15:14:30 +0200
committerjpl2017-03-31 15:14:30 +0200
commitcb8ff6145e0ee05c9f016e91f6c0f66919b8fe29 (patch)
tree006f738584822510757751b58e81e7a504efc3e0 /app/views/workbenches/show.html.slim
parent29bcf61cb5907f49fb1ee676899f81d056ca7fce (diff)
downloadchouette-core-cb8ff6145e0ee05c9f016e91f6c0f66919b8fe29.tar.bz2
Refs #3013: updating status columns/filters, with new icon set
Diffstat (limited to 'app/views/workbenches/show.html.slim')
-rw-r--r--app/views/workbenches/show.html.slim2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/workbenches/show.html.slim b/app/views/workbenches/show.html.slim
index 1bd86af16..2d13501b7 100644
--- a/app/views/workbenches/show.html.slim
+++ b/app/views/workbenches/show.html.slim
@@ -22,7 +22,7 @@
.col-lg-12
= table_builder @wbench_refs,
{ :name => 'name',
- :status => Proc.new {|w| w.archived? ? ("<div class='td-block'><span class='fa fa-archive'></span><span>Conservé</span></div>").html_safe : ("<div class='td-block'><span class='fa fa-pencil'></span><span>En préparation</span></div>").html_safe},
+ :status => Proc.new {|w| w.archived? ? ("<div class='td-block'><span class='fa fa-archive'></span><span>Conservé</span></div>").html_safe : ("<div class='td-block'><span class='sb sb-lg sb-preparing'></span><span>En préparation</span></div>").html_safe},
:organisation => Proc.new {|w| w.organisation.name},
:validity_period => Proc.new {|w| w.validity_period.nil? ? '-' : t('validity_range', debut: l(w.try(:validity_period).try(:begin), format: :short), end: l(w.try(:validity_period).try(:end), format: :short))},
:lines => Proc.new {|w| w.lines.count},