diff --git a/app/assets/stylesheets/specific/pools.css.scss b/app/assets/stylesheets/specific/pools.css.scss index bed7d1adf..aa359b3ec 100644 --- a/app/assets/stylesheets/specific/pools.css.scss +++ b/app/assets/stylesheets/specific/pools.css.scss @@ -31,6 +31,10 @@ div#c-pools { textarea { height: 10em; } + + span.inactive { + color: #AAA; + } } div#c-pool-orders { diff --git a/app/views/pools/show.html.erb b/app/views/pools/show.html.erb index 6560dc159..961628e9d 100644 --- a/app/views/pools/show.html.erb +++ b/app/views/pools/show.html.erb @@ -1,6 +1,12 @@
-

Pool: <%= @pool.pretty_name %>

+

+ Pool: + <%= @pool.pretty_name %> + <% if @pool.is_deleted? %> + (deleted) + <% end %> +

<%= format_text(@pool.description) %>