Skip to content

Commit

Permalink
Merge pull request #4 from ltfschoen/feature/csv-generator
Browse files Browse the repository at this point in the history
Feature / Fake CSV Generator
  • Loading branch information
ltfschoen authored Mar 7, 2017
2 parents 5032849 + 431785b commit be2e739
Show file tree
Hide file tree
Showing 11 changed files with 267 additions and 12 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'faked_csv'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
Expand Down
9 changes: 9 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ GEM
diff-lcs (1.3)
erubis (2.7.0)
execjs (2.7.0)
faked_csv (0.1.5)
faker (~> 1.3)
json (~> 1.8)
open_uri_redirections (~> 0.1)
faker (1.7.3)
i18n (~> 0.5)
ffi (1.9.18)
globalid (0.3.7)
activesupport (>= 4.1.0)
Expand All @@ -72,6 +78,7 @@ GEM
thor (>= 0.14, < 2.0)
jquery-ui-rails (6.0.1)
railties (>= 3.2.16)
json (1.8.6)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
Expand All @@ -89,6 +96,7 @@ GEM
nio4r (2.0.0)
nokogiri (1.7.0.1)
mini_portile2 (~> 2.1.0)
open_uri_redirections (0.2.1)
pg (0.19.0)
puma (3.7.1)
rack (2.0.1)
Expand Down Expand Up @@ -189,6 +197,7 @@ DEPENDENCIES
bootstrap (~> 4.0.0.alpha6)
byebug
coffee-rails (~> 4.2)
faked_csv
jbuilder (~> 2.5)
jquery-rails
jquery-ui-rails (~> 6.0.1)
Expand Down
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Screenshot

![alt tag](https://raw.githubusercontent.com/ltfschoen/rails_csv_app/master/screenshot.png)
![alt tag](https://raw.githubusercontent.com/ltfschoen/rails_csv_app/master/screenshot2.png)

---

Expand All @@ -17,6 +17,7 @@
* [Feature - CSV Upload and Display](#part-6000)
* [Feature - Search and Filter Data Uploaded from CSV with Pagination](#part-7000)
* [Feature - Bootstrap](#part-8000)
* [Feature - Fake CSV Generator](#part-9000)

---

Expand All @@ -31,7 +32,7 @@
* Select the [products.csv](https://github.com/ltfschoen/rails_csv_app/blob/master/products.csv) file located in the root directory
* Click "Import CSV"
* Click the "1", "2", "Next" or "Previous" to change Page using Pagination
* Click the column Labels (i.e. "Id", "Name", "Price", "Quantity", "Released") to filter ordering ascending/descending
* Click the column Labels (i.e. "Uid", "Name", "Price", "Quantity", "Released") to filter ordering ascending/descending
* Enter a value in the input field (case sensitive). Click "Search" to filter list.

## Goals
Expand Down Expand Up @@ -282,7 +283,7 @@ written for Rails 3 back in 2010, to make it run without error:
* Whitelisted parameters in app/controllers/products_controller.rb with the following and by accessing parameters with `product_params[:search]` instead of just `params[:search]`:
```
def product_params
params.permit(:id, :name, :price, :released_at, :search, :page, :sort, :utf8, :direction, :_)
params.permit(:id, :uid, :name, :price, :released_at, :search, :page, :sort, :utf8, :direction, :_)
end
```
* In app/assets/javascripts/application.js, change jQuery `.live`(deprecated) to `.on`
Expand All @@ -294,3 +295,13 @@ written for Rails 3 back in 2010, to make it run without error:
## Feature - Bootstrap <a id="part-8000"></a>
* Bootstrap 4 tables https://v4-alpha.getbootstrap.com/content/tables/
### Feature - Fake CSV Generator <a id="part-9000"></a>
* Faked CSV Gem https://github.com/jiananlu/faked_csv
* Create file `fake_csv_config.csv.json`
* Configure it to output CSV data in format desired and supports Faker Gem https://github.com/stympy/faker
* Execute it with the following to generate random CSV:
`faked_csv -i fake_csv_config.csv.json -o products.csv`
* Insert the Labels at the top of the generated file, i.e.
`uid,name,quantity,price,comments,released_at`
2 changes: 1 addition & 1 deletion app/controllers/products_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def sort_direction
end

def product_params
params.permit(:id, :name, :quantity, :price, :comments, :released_at,
params.permit(:id, :uid, :name, :quantity, :price, :comments, :released_at,
:file, :search, :page, :sort, :utf8,
:authenticity_token, :commit, :direction, :_)
end
Expand Down
1 change: 0 additions & 1 deletion app/models/product.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ class Product < ApplicationRecord

def self.import(file_path)
CSV.foreach(file_path, headers: true) do |row|

product_hash = row.to_hash
product = Product.where(id: product_hash["id"])

Expand Down
4 changes: 2 additions & 2 deletions app/views/products/_products.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<thead class="thead-default">
<tr>
<th>#</th>
<th><%= sortable "id", "Id" %></th>
<th><%= sortable "uid", "Uid" %></th>
<th><%= sortable "name", "Name" %></th>
<th><%= sortable "price", "Price" %></th>
<th><%= sortable "quantity", "Quantity" %></th>
Expand All @@ -19,7 +19,7 @@
<tbody>
<tr>
<th scope="row"><%= index %></th>
<td class="text-primary"><%= product.id %></td>
<td class="text-primary"><%= product.uid %></td>
<td class="text-primary"><%= product.name %></td>
<td class="text-primary price"><%= number_to_currency(product.price) %></td>
<td class="text-primary"><%= product.quantity %></td>
Expand Down
1 change: 1 addition & 0 deletions db/migrate/20170307044647_create_products.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
class CreateProducts < ActiveRecord::Migration[5.0]
def change
create_table :products do |t|
t.string :uid
t.string :name
t.integer :quantity
t.decimal :price, precision: 12, scale: 2
Expand Down
1 change: 1 addition & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
enable_extension "plpgsql"

create_table "products", force: :cascade do |t|
t.string "uid"
t.string "name"
t.integer "quantity"
t.decimal "price", precision: 12, scale: 2
Expand Down
37 changes: 37 additions & 0 deletions fake_csv_config.csv.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"rows": 200,
"fields": [
{
"name": "uid",
"type": "rand:char",
"length": 5
},
{
"name": "name",
"type": "faker:name:last_name",
"inject": ["Schoen"]
},
{
"name": "quantity",
"type": "rand:int",
"range": [10, 80]
},
{
"name": "price",
"type": "rand:float",
"range": [150, 190],
"inject": [200, 210],
"rotate": 12,
"precision": 2
},
{
"name": "comments",
"type": "fixed",
"values": ["http://lorempixel.com/100/100/"]
},
{
"name": "released_at",
"type": "faker:date:forward"
}
]
}
206 changes: 201 additions & 5 deletions products.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,201 @@
id,name,quantity,price,comments,released_at
1,Guitar,20,199.99,none,2017-01-19T08:31:48-0600
2,Trumpet,5,299.99,none,2017-02-19T08:35:48-0600
3,Piano,3,699.99,none,2017-04-19T08:34:48-0600
4,Clarinet,10,59.99,none,2017-03-19T08:37:48-0600
uid,name,quantity,price,comments,released_at
DpTcV,Schoen,55,178.08,http://lorempixel.com/100/100/,2017-10-31
8Zizf,Buckridge,73,159.23,http://lorempixel.com/100/100/,2017-09-01
zcdcw,Jakubowski,37,178.08,http://lorempixel.com/100/100/,2017-09-21
GjGds,Stamm,71,178.08,http://lorempixel.com/100/100/,2017-10-25
qWZeL,Hoeger,69,178.08,http://lorempixel.com/100/100/,2017-12-15
63uXt,Miller,16,178.08,http://lorempixel.com/100/100/,2017-06-04
7BYGU,Bogisich,52,178.08,http://lorempixel.com/100/100/,2018-02-22
bxm4x,Schoen,28,178.08,http://lorempixel.com/100/100/,2017-11-09
WwMVV,Schoen,34,200,http://lorempixel.com/100/100/,2017-05-08
YMZjq,Berge,57,156.85,http://lorempixel.com/100/100/,2018-02-26
QDkcd,Carter,21,178.08,http://lorempixel.com/100/100/,2017-06-28
in4Xk,Hayes,65,168.68,http://lorempixel.com/100/100/,2018-02-08
WxyNe,Nader,34,178.08,http://lorempixel.com/100/100/,2017-05-30
wfDwp,Denesik,60,151.22,http://lorempixel.com/100/100/,2017-11-17
Iznzf,Bechtelar,80,185.6,http://lorempixel.com/100/100/,2017-12-28
rgvx5,Bernier,24,178.08,http://lorempixel.com/100/100/,2017-09-03
xuDzp,Price,30,152.38,http://lorempixel.com/100/100/,2017-10-06
E5oNC,Conroy,70,152.38,http://lorempixel.com/100/100/,2018-01-22
zabpM,Harris,23,178.08,http://lorempixel.com/100/100/,2017-05-16
JHdgE,Rippin,53,178.08,http://lorempixel.com/100/100/,2017-12-15
2h7p6,Bartell,47,178.08,http://lorempixel.com/100/100/,2017-07-23
dXsSk,Luettgen,16,152.38,http://lorempixel.com/100/100/,2017-12-30
D9JkU,Kertzmann,16,178.08,http://lorempixel.com/100/100/,2018-02-02
NMpGy,Rodriguez,54,185.6,http://lorempixel.com/100/100/,2017-07-26
847TT,Fay,27,161.71,http://lorempixel.com/100/100/,2017-06-18
WEkfn,Swift,28,178.08,http://lorempixel.com/100/100/,2017-11-13
pG7qG,Jast,59,151.22,http://lorempixel.com/100/100/,2017-12-29
UxLj6,Rutherford,14,159.23,http://lorempixel.com/100/100/,2017-03-18
FMLOB,Rippin,47,200,http://lorempixel.com/100/100/,2017-10-03
6cAmV,Jacobs,15,177.73,http://lorempixel.com/100/100/,2017-11-08
gPy8G,Marquardt,27,178.08,http://lorempixel.com/100/100/,2017-12-04
QeBD6,Maggio,50,178.08,http://lorempixel.com/100/100/,2018-01-26
8HPuv,Thiel,20,178.08,http://lorempixel.com/100/100/,2017-04-01
jCPyQ,Kreiger,41,151.22,http://lorempixel.com/100/100/,2018-02-13
UZ8TI,Reynolds,39,178.08,http://lorempixel.com/100/100/,2017-08-09
WMydP,Abbott,38,200,http://lorempixel.com/100/100/,2018-02-20
wiBQv,Lockman,37,168.68,http://lorempixel.com/100/100/,2017-11-08
TpSZq,Heidenreich,28,178.08,http://lorempixel.com/100/100/,2017-08-22
73kVf,Berge,50,178.08,http://lorempixel.com/100/100/,2017-09-13
Q7uTk,Schamberger,64,161.71,http://lorempixel.com/100/100/,2017-11-25
5gZiT,Gaylord,63,185.6,http://lorempixel.com/100/100/,2018-01-11
mKU7y,Wunsch,38,152.38,http://lorempixel.com/100/100/,2017-09-08
oZUDI,Kuvalis,13,159.23,http://lorempixel.com/100/100/,2017-06-06
WAY4J,Swaniawski,60,168.68,http://lorempixel.com/100/100/,2017-09-17
FsQ2p,Feest,43,178.08,http://lorempixel.com/100/100/,2017-12-09
GSUcX,Williamson,26,178.08,http://lorempixel.com/100/100/,2018-01-11
5dY48,O'Keefe,29,151.22,http://lorempixel.com/100/100/,2017-06-21
6pPcL,Hessel,35,168.68,http://lorempixel.com/100/100/,2017-05-04
dSj42,Schaden,40,210,http://lorempixel.com/100/100/,2017-07-31
CqPwu,Barton,77,178.08,http://lorempixel.com/100/100/,2017-03-19
tk4px,Rau,52,185.6,http://lorempixel.com/100/100/,2017-11-21
61OhS,Weissnat,79,210,http://lorempixel.com/100/100/,2018-02-04
dWjFX,Altenwerth,52,178.08,http://lorempixel.com/100/100/,2017-12-01
Ac9Ca,Gutmann,38,178.08,http://lorempixel.com/100/100/,2017-08-24
m1MtU,Heathcote,73,178.08,http://lorempixel.com/100/100/,2017-05-05
LzDze,Hermiston,38,168.68,http://lorempixel.com/100/100/,2017-12-08
ykA9n,Wolf,77,200,http://lorempixel.com/100/100/,2017-04-15
DwfcJ,Armstrong,18,156.85,http://lorempixel.com/100/100/,2017-05-19
VT8lh,Considine,37,178.08,http://lorempixel.com/100/100/,2017-11-25
sjDNP,Homenick,22,168.68,http://lorempixel.com/100/100/,2017-12-21
aHrr1,Gislason,77,161.71,http://lorempixel.com/100/100/,2017-10-27
RrNSf,Lebsack,43,168.68,http://lorempixel.com/100/100/,2017-10-21
njLWm,Rau,59,178.08,http://lorempixel.com/100/100/,2017-05-31
1HHsw,Schoen,11,151.22,http://lorempixel.com/100/100/,2017-12-19
x2RaT,Marvin,10,178.08,http://lorempixel.com/100/100/,2017-11-09
YwH13,VonRueden,16,178.08,http://lorempixel.com/100/100/,2017-10-04
3mv6t,Schoen,61,178.08,http://lorempixel.com/100/100/,2017-04-14
nkTgE,Becker,40,151.22,http://lorempixel.com/100/100/,2017-04-18
CzOgR,Schoen,67,200,http://lorempixel.com/100/100/,2017-11-14
7Tl2a,Walsh,13,185.6,http://lorempixel.com/100/100/,2017-10-22
3r1L7,Ruecker,16,168.68,http://lorempixel.com/100/100/,2018-02-14
pnOLZ,Labadie,48,168.68,http://lorempixel.com/100/100/,2017-09-29
7raMx,Bernier,65,161.71,http://lorempixel.com/100/100/,2017-10-04
rzMAE,Schaefer,56,151.22,http://lorempixel.com/100/100/,2017-05-04
EFhI3,Huels,65,178.08,http://lorempixel.com/100/100/,2017-03-21
9bGU0,Terry,30,153.6,http://lorempixel.com/100/100/,2017-06-07
xMzAB,Schneider,40,161.71,http://lorempixel.com/100/100/,2017-10-23
2qKDg,Rogahn,18,178.08,http://lorempixel.com/100/100/,2018-01-03
UJvOp,Hintz,61,185.6,http://lorempixel.com/100/100/,2017-04-11
IimMb,Halvorson,10,178.08,http://lorempixel.com/100/100/,2017-09-08
DyIfx,Douglas,15,178.08,http://lorempixel.com/100/100/,2017-08-03
uVqDr,Glover,58,178.08,http://lorempixel.com/100/100/,2017-08-10
0BA9m,Huel,19,185.6,http://lorempixel.com/100/100/,2017-05-12
avCZr,Tromp,49,178.08,http://lorempixel.com/100/100/,2018-02-14
V8usj,Nikolaus,43,153.6,http://lorempixel.com/100/100/,2017-06-19
cq4y6,Brekke,53,159.23,http://lorempixel.com/100/100/,2017-04-09
VtCvb,Volkman,33,151.22,http://lorempixel.com/100/100/,2017-05-29
PBDtT,Hoeger,30,178.08,http://lorempixel.com/100/100/,2017-12-15
w64Li,Simonis,55,178.08,http://lorempixel.com/100/100/,2017-10-16
sYJst,Schoen,21,151.22,http://lorempixel.com/100/100/,2017-09-05
5WCBD,Pagac,48,161.71,http://lorempixel.com/100/100/,2017-08-01
BJ1vO,McKenzie,77,178.08,http://lorempixel.com/100/100/,2018-01-19
JEBdt,Wintheiser,77,210,http://lorempixel.com/100/100/,2017-05-21
vwlcg,Ruecker,31,168.68,http://lorempixel.com/100/100/,2017-03-18
V4scU,Marquardt,14,168.68,http://lorempixel.com/100/100/,2018-03-03
tBhvw,McDermott,42,153.6,http://lorempixel.com/100/100/,2017-04-13
w2o9X,Glover,52,168.68,http://lorempixel.com/100/100/,2017-08-18
QMw0P,Farrell,44,151.22,http://lorempixel.com/100/100/,2017-03-18
UWQX6,Brekke,49,178.08,http://lorempixel.com/100/100/,2017-11-08
Rgj6X,Hills,32,178.08,http://lorempixel.com/100/100/,2018-02-25
J1wnD,Kunze,33,153.6,http://lorempixel.com/100/100/,2017-08-06
ERoqg,Gorczany,16,151.22,http://lorempixel.com/100/100/,2018-02-19
Hmy0t,Grady,48,151.22,http://lorempixel.com/100/100/,2017-12-01
qPEoc,Wilderman,44,168.68,http://lorempixel.com/100/100/,2017-08-13
30tYX,Bogisich,42,168.68,http://lorempixel.com/100/100/,2017-12-22
pnztT,Runolfsdottir,60,161.71,http://lorempixel.com/100/100/,2017-10-17
jfMbD,Bartell,19,161.71,http://lorempixel.com/100/100/,2018-01-06
L9azw,Swaniawski,39,210,http://lorempixel.com/100/100/,2017-11-09
jpavF,Schoen,63,178.08,http://lorempixel.com/100/100/,2017-06-10
WU6FS,Smith,15,200,http://lorempixel.com/100/100/,2017-11-27
ut5nw,Bartell,12,210,http://lorempixel.com/100/100/,2017-03-09
A8ve8,Weber,18,151.22,http://lorempixel.com/100/100/,2017-05-25
vy6fr,Wolff,15,168.68,http://lorempixel.com/100/100/,2018-01-12
9rn4J,Rau,41,185.6,http://lorempixel.com/100/100/,2017-09-08
u6x8W,Howell,58,178.08,http://lorempixel.com/100/100/,2017-11-03
Sje4j,Gottlieb,11,185.6,http://lorempixel.com/100/100/,2017-05-03
ccKAP,Abshire,73,156.85,http://lorempixel.com/100/100/,2017-05-31
S8z2x,Bode,73,161.71,http://lorempixel.com/100/100/,2017-11-02
ig2yR,Goodwin,66,178.08,http://lorempixel.com/100/100/,2017-12-01
03VrJ,Osinski,66,159.23,http://lorempixel.com/100/100/,2018-01-15
K3S90,Ebert,45,178.08,http://lorempixel.com/100/100/,2017-10-31
3sa7c,Hayes,66,156.85,http://lorempixel.com/100/100/,2018-02-03
o1zWn,Connelly,71,178.08,http://lorempixel.com/100/100/,2018-02-10
zHFUA,Buckridge,35,178.08,http://lorempixel.com/100/100/,2017-06-25
1obH7,Schoen,30,151.22,http://lorempixel.com/100/100/,2017-05-27
uLrDx,Batz,61,178.08,http://lorempixel.com/100/100/,2018-02-01
XxzWQ,Osinski,61,153.6,http://lorempixel.com/100/100/,2018-01-21
ZD9Jk,Champlin,22,185.6,http://lorempixel.com/100/100/,2018-02-15
HwPXX,Aufderhar,12,178.08,http://lorempixel.com/100/100/,2018-01-10
5ZWXB,Hilpert,79,156.85,http://lorempixel.com/100/100/,2017-03-19
WKP1P,Christiansen,58,151.22,http://lorempixel.com/100/100/,2018-02-15
aRiOg,Ankunding,56,210,http://lorempixel.com/100/100/,2017-07-16
Umq2c,Predovic,55,152.38,http://lorempixel.com/100/100/,2018-03-05
UQbSA,Rippin,24,178.08,http://lorempixel.com/100/100/,2017-07-07
xZBlU,Heaney,24,178.08,http://lorempixel.com/100/100/,2018-03-03
Isu7H,Hills,80,156.85,http://lorempixel.com/100/100/,2017-12-13
SKAXS,Towne,58,178.08,http://lorempixel.com/100/100/,2017-12-13
gLiI9,Steuber,79,178.08,http://lorempixel.com/100/100/,2018-02-04
vzORu,Cormier,65,161.71,http://lorempixel.com/100/100/,2017-03-13
HmVe8,Hansen,53,200,http://lorempixel.com/100/100/,2017-08-12
eMI6P,Mills,41,151.22,http://lorempixel.com/100/100/,2017-08-01
EMJwK,Mayer,14,161.71,http://lorempixel.com/100/100/,2017-11-29
bTzvY,Stroman,26,161.71,http://lorempixel.com/100/100/,2017-10-16
6P4R4,Miller,66,178.08,http://lorempixel.com/100/100/,2017-12-07
6IDxJ,Rowe,41,178.08,http://lorempixel.com/100/100/,2017-11-14
9pVOv,Collier,48,151.22,http://lorempixel.com/100/100/,2017-07-19
957c5,Schoen,34,153.6,http://lorempixel.com/100/100/,2017-10-31
pKMs4,Schmeler,53,200,http://lorempixel.com/100/100/,2017-12-31
F6J2f,Goodwin,69,153.6,http://lorempixel.com/100/100/,2018-02-06
vx4HQ,Schoen,48,156.85,http://lorempixel.com/100/100/,2018-02-24
a1wqD,Schoen,71,200,http://lorempixel.com/100/100/,2017-05-30
mMEA0,Daniel,34,178.08,http://lorempixel.com/100/100/,2017-08-02
bL5cb,Pagac,51,185.6,http://lorempixel.com/100/100/,2017-07-12
mSg1A,Rempel,10,168.68,http://lorempixel.com/100/100/,2018-03-01
YS197,Kovacek,39,168.68,http://lorempixel.com/100/100/,2017-04-01
wHgqT,Howe,49,185.6,http://lorempixel.com/100/100/,2017-04-13
kXek9,Grady,39,178.08,http://lorempixel.com/100/100/,2017-10-27
4iPQz,Lemke,11,185.6,http://lorempixel.com/100/100/,2017-07-14
7hPDg,Russel,42,159.23,http://lorempixel.com/100/100/,2018-01-23
wK1oj,Little,70,168.68,http://lorempixel.com/100/100/,2017-07-31
vzA8R,Prosacco,16,168.68,http://lorempixel.com/100/100/,2017-08-19
cPPhn,Donnelly,16,178.08,http://lorempixel.com/100/100/,2017-03-26
Ty45E,Stoltenberg,80,178.08,http://lorempixel.com/100/100/,2017-03-16
X9vSU,Hammes,63,151.22,http://lorempixel.com/100/100/,2018-01-23
xdOdu,Bergnaum,27,152.38,http://lorempixel.com/100/100/,2017-04-04
AOHAF,Schoen,27,185.6,http://lorempixel.com/100/100/,2017-11-29
TMJJF,Stoltenberg,52,178.08,http://lorempixel.com/100/100/,2017-05-26
lH57b,O'Hara,72,178.08,http://lorempixel.com/100/100/,2017-05-28
2s9UN,Schuppe,47,156.85,http://lorempixel.com/100/100/,2018-01-08
nWcFl,Braun,46,178.08,http://lorempixel.com/100/100/,2017-05-04
ik6wV,Gibson,48,178.08,http://lorempixel.com/100/100/,2017-08-26
eySDl,Breitenberg,10,159.23,http://lorempixel.com/100/100/,2017-11-15
M5dQ1,Rogahn,62,156.85,http://lorempixel.com/100/100/,2017-06-04
BlpHV,Hettinger,64,178.08,http://lorempixel.com/100/100/,2017-03-27
0CQVf,Wintheiser,16,152.38,http://lorempixel.com/100/100/,2017-06-29
NSXGG,Hammes,58,200,http://lorempixel.com/100/100/,2017-09-20
xL2Jl,Goldner,16,210,http://lorempixel.com/100/100/,2017-03-19
g9KTv,Haley,39,200,http://lorempixel.com/100/100/,2018-01-04
IAn2o,Heidenreich,55,178.08,http://lorempixel.com/100/100/,2017-07-18
Y54X3,Schoen,71,185.6,http://lorempixel.com/100/100/,2017-12-24
hcTJp,Schoen,63,178.08,http://lorempixel.com/100/100/,2018-01-18
4Bfc9,Brakus,54,156.85,http://lorempixel.com/100/100/,2018-01-01
kRmIV,Bogan,67,156.85,http://lorempixel.com/100/100/,2018-03-07
gHnjp,Bradtke,56,168.68,http://lorempixel.com/100/100/,2018-03-05
IvzV7,Koch,12,210,http://lorempixel.com/100/100/,2017-03-15
rUqym,Monahan,14,178.08,http://lorempixel.com/100/100/,2017-04-10
PSkFJ,McClure,77,185.6,http://lorempixel.com/100/100/,2017-07-14
Kd1Jj,Murphy,15,185.6,http://lorempixel.com/100/100/,2017-05-11
2e9Ji,Thompson,40,178.08,http://lorempixel.com/100/100/,2017-12-19
QHrl8,Wiegand,54,178.08,http://lorempixel.com/100/100/,2017-08-22
Zf1io,Schoen,71,168.68,http://lorempixel.com/100/100/,2017-06-13
EFqP7,Nicolas,60,151.22,http://lorempixel.com/100/100/,2017-12-27
E4Ztq,Feest,13,168.68,http://lorempixel.com/100/100/,2017-11-15
4RfGl,Gerhold,23,159.23,http://lorempixel.com/100/100/,2017-05-31
jqNo0,Nicolas,43,178.08,http://lorempixel.com/100/100/,2017-03-14
8aq33,Streich,14,178.08,http://lorempixel.com/100/100/,2017-04-07
3ys2T,Jacobson,32,161.71,http://lorempixel.com/100/100/,2017-08-22
fRqRV,Vandervort,61,178.08,http://lorempixel.com/100/100/,2018-02-08
0kKWC,Weimann,12,178.08,http://lorempixel.com/100/100/,2017-06-30
I5Lbs,Marquardt,30,178.08,http://lorempixel.com/100/100/,2017-12-22
Binary file added screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit be2e739

Please sign in to comment.