Updated order display again
[depot.git] / app / views / products / index.html.erb
index ef89bd927117f73562e3811e38a1fa5e7205230e..ca7fb6a809cd53c83ec2491a40f59f13fcb21e19 100644 (file)
@@ -1,4 +1,4 @@
-<div id="product-list">
+<div id="pretty-list">
   <h1>Listing products</h1>
 
   <table>
           <dt><%=h product.title %></dt>
           <dd><%=h truncate(product.description.gsub(/<.*?>/, '|'), 
             :length => 80) %></dd>
-          <dd><%=number_to_currency product.price, :unit => "&pound;" %>
+          <dd><%=number_to_currency product.price, :unit => "£" %>
           <% if product.date_available.past? %>
             <dd>Available since <%= product.date_available %></dd>
           <% else %>
             <dd class="unavailable">Available from <%= product.date_available %></dd>
           <% end %>
+          <% if not product.date_available_until.nil? %> 
+            <% if product.date_available_until.future? %>
+              <dd>Available until <%= product.date_available_until %></dd>
+            <% else %>
+              <dd class="unavailable">Unavailable since <%= product.date_available_until %></dd>
+            <% end %>
+          <% end %>
         </dl>
       </td>