Louis | Adds reports on number of bikes sold and average price per year

This commit is contained in:
Loos
2014-12-21 23:36:55 -06:00
parent f7de4ea77a
commit 90b059a46d
5 changed files with 50 additions and 8 deletions
@@ -1 +1,14 @@
= @bikes_sold_per_year
.container
%h1 Bikes Sold Per Year
%table.table
%thead
%tr
%th Year
%th Number of Bikes
%th Average Price
%tbody
- @yearly_data.each do |year, data|
%tr
%td= year
%td= data[:number]
%td= sprintf( "%0.02f", data[:average_price])