Loos
10 years ago
6 changed files with 58 additions and 2 deletions
@ -0,0 +1,15 @@ |
|||
.container |
|||
%br |
|||
|
|||
%h1 Available Freecyclery Bikes |
|||
%table.table.table-striped.table-bordered.table-hover |
|||
%thead |
|||
%tr |
|||
%th Brand |
|||
%th Model |
|||
%tbody |
|||
- @available_bikes.each do |bike| |
|||
%tr |
|||
%td= bike.brand |
|||
%td= bike.model |
|||
|
@ -1,14 +1,20 @@ |
|||
.container |
|||
%h1 Bike & Client Tracker |
|||
%br |
|||
= link_to "View All Bikes", bikes_path |
|||
%h2 Bikes |
|||
%br |
|||
= link_to "Freecyclery Clients", clients_path |
|||
= link_to "View All Bikes", bikes_path |
|||
%br |
|||
= link_to "Print Sale Bike Labels", print_select_bikes_path |
|||
%br |
|||
%h2 Freecyclery |
|||
%br |
|||
= link_to "Freecyclery Clients", clients_path |
|||
%br |
|||
= link_to "Freecyclery Agencies", agencies_path |
|||
%br |
|||
= link_to "Freecyclery Bikes Ready for Pickup", ready_for_pickup_path |
|||
%br |
|||
= link_to "Freecyclery Closed Applications", closed_applications_path |
|||
%br |
|||
= link_to "Available Bikes", available_bikes_path |
|||
|
@ -0,0 +1,27 @@ |
|||
Freecyclery Receipts |
|||
Prints two quarter sheet receipts -- one for client, one for Recyclery. Includes: |
|||
Client Name, Agency, Bike Log Number (make and model too?), Helmet Needed?, Lock Needed?, Will Pay $25 upon receipt of lock and helmet? |
|||
Also blanks for Client Signature, Date Received, and Recyclery Volunteer Initials. |
|||
|
|||
Reports |
|||
Number of bikes sold by year or month. (Bar graph for extra points!) |
|||
Number of bikes donated by year or month. (With bar graph!?) |
|||
Number of bikes donated according to agency. (Graph?) |
|||
Average bike price for year. |
|||
|
|||
assign a bike from the available freecyclery bikes page |
|||
mark as picked up from the ready for pickup page |
|||
validations around parameters that break site if incomplete |
|||
mark as sold should be disabled after bike is sold |
|||
there should be nice feedback indicating that the bike was sold |
|||
disable new users |
|||
Improve form layouts |
|||
make navigation always on the left side of the page |
|||
Make customer facing bike index with pitchers |
|||
make skizzers marks on the labels page |
|||
make great dummy data |
|||
refactor index - move unsold bikes to model |
|||
make ‚recyclery‘ its own view folder, controller, etc. |
|||
add a request-a-feature feature |
|||
|
|||
|
Loading…
Reference in new issue