indicate when pools are deleted

This commit is contained in:
albert
2013-02-23 16:07:06 -05:00
parent 8911738909
commit 6927d07bc2
2 changed files with 11 additions and 1 deletions

View File

@@ -31,6 +31,10 @@ div#c-pools {
textarea {
height: 10em;
}
span.inactive {
color: #AAA;
}
}
div#c-pool-orders {

View File

@@ -1,6 +1,12 @@
<div id="c-pools">
<div id="a-show">
<h1>Pool: <%= @pool.pretty_name %></h1>
<h1>
Pool:
<%= @pool.pretty_name %>
<% if @pool.is_deleted? %>
<span class="inactive">(deleted)</span>
<% end %>
</h1>
<div id="description">
<%= format_text(@pool.description) %>