You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
510 B
22 lines
510 B
#auctions
|
|
aside
|
|
h2 Search Filters
|
|
.form-container
|
|
form action="/auctions" method="get"
|
|
label Keywords
|
|
input type="text" name="title" placeholder="Keywords (ex: computer, teapot)"
|
|
|
|
label Price range
|
|
input type="range" name="price_rng"
|
|
|
|
label Is Open?
|
|
input type="checkbox" name="isopen" value="1"
|
|
|
|
input type="submit" value="Search"
|
|
article
|
|
h2 Results
|
|
|
|
ul
|
|
- auctions.each do |auction|
|
|
li
|
|
| #{auction["title"]}
|
|
|