forked from Ada-C6/betsy
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
95 changed files
with
255 additions
and
124 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
// Place all the styles related to the Sessions controller here. | ||
// They will automatically be included in application.css. | ||
// You can use Sass (SCSS) here: http://sass-lang.com/ | ||
|
||
.welcome-message { | ||
margin-top: 2rem; | ||
} | ||
|
||
.welcome-message > h2, .welcome-message > h3 { | ||
font-family: 'Chelsea Market', cursive; | ||
text-shadow: 2px 2px 3px rgb(136, 149, 194); | ||
} | ||
|
||
.welcome-message > h2 { | ||
color: rgb(82, 82, 142); | ||
} | ||
|
||
.welcome-message > h3 { | ||
color: rgb(136, 149, 194); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<ul> | ||
<% @products.each do |product| %> | ||
<% if product.image != nil %> | ||
<strong>Image:</strong> | ||
<li class="image"><%= product.image_stored? ? image_tag(product.image.thumb('80x60').url) : "" %></li> | ||
<% elsif %> | ||
<li class="image"><%= image_tag "no_image.png", size: "80x60", alt: "Robots" %></li> | ||
<% end %> | ||
<li><%= link_to product.name, product_path(product.id) %></li> | ||
<li> Price: <%= product.price %></li> | ||
<li>In Stock: <%= product.quantity %></li> | ||
<% end %> | ||
</ul> | ||
<ul class='row small-up-4'> | ||
<% @products.each do |product| %> | ||
<li class="column text-center"> | ||
<%= product_image(product) %> | ||
<ul 'row small-up-3' > | ||
<li class="column text-center"><h2><%= link_to product.name, product_path(product.id) %></h2></li> | ||
<li class="product-info column text-center"> $ <%= product.price %>0</li> | ||
<li class="product-info notice column text-center">Only <%= product.quantity %> left!</li> | ||
</ul> | ||
</li> | ||
<% end %> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<section class="welcome-message small-block-grid-1 text-center the-grid"> | ||
|
||
<h2 class='column'>WELCOME TO ROBITS </h2> | ||
|
||
<h3 class='column'>Somewhere you belong</h3> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
<h3>HOMEPAGE | WELCOME TO ROBITS </h3> | ||
|
||
<h4>Somewhere you belong</h4> | ||
|
||
<p> | ||
THIS IS THE GENERIC INDEX PAGE | ||
</p> | ||
<%= render partial: "welcome" %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
<%# if session[:merchant_id] %> | ||
<!-- <p>Login Successful! Welcome! <%# @current_merchant.user_name %></p> --> | ||
<%# end %> | ||
|
||
<h3>HOMEPAGE | WELCOME TO ROBITS </h3> | ||
|
||
<h4>Somewhere you belong</h4> | ||
<%= render partial: "welcome" %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
<%# if session[:merchant_id].nil? %> | ||
<%# if flash[:error] %> | ||
<!-- <p><%# flash[:error] %></p> --> | ||
<%# end %> | ||
<%# end %> | ||
|
||
<h3>HOMEPAGE | WELCOME TO ROBITS </h3> | ||
|
||
<h4>Somewhere you belong</h4> | ||
<%= render partial: "welcome" %> |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
db/migrate/20161018213025_change_cc_exp_date_to_datetime_orders_table.rb
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
db/migrate/20161020041859_remove_uid_provider_from_merchants.rb
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
db/migrate/20161021210316_remove_belongs_to_category_from_products.rb
100644 → 100755
Empty file.
Empty file modified
0
db/migrate/20161021211559_drop_belongs_to_category_from_products.rb
100644 → 100755
Empty file.
Empty file modified
0
db/migrate/20161024204106_change_data_type_for_cc_expiration.rb
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
db/migrate/20161025192138_add_retire_product_column_to_product.rb
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/1dvf68zqyh_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/1dvf68zqyh_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+11 KB
public/system/dragonfly/development/2016/10/28/2czupg77pc_geek_coffee_5.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/2czupg77pc_geek_coffee_5.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: geek_coffee_5.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/2p9j4rbws6_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/2p9j4rbws6_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/2tgmv63qiq_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/2tgmv63qiq_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/4dt1a36u8r_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/4dt1a36u8r_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/6487gbhqf8_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/6487gbhqf8_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/6r4imr3hb4_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/6r4imr3hb4_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/6re90j2ssg_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/6re90j2ssg_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/8eml8ec93j_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/8eml8ec93j_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/9f41i1s2jc_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/9f41i1s2jc_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+89.7 KB
public/system/dragonfly/development/2016/10/28/9lwsfkzvek_tishirt.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/9lwsfkzvek_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
Binary file added
BIN
+27.7 KB
public/system/dragonfly/development/2016/10/28/9npip9672_baby_cloth.jpg
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/9npip9672_baby_cloth.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: baby-cloth.jpg | ||
model_class: Product | ||
model_attachment: image |
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
public/system/dragonfly/development/2016/10/28/tl2pbvc16_tishirt.jpg.meta.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
name: tishirt.jpg | ||
model_class: Product | ||
model_attachment: image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.