Added some item views
This commit is contained in:
parent
1736e7e457
commit
dd136d19c9
@ -5,3 +5,33 @@ get '/' do
|
|||||||
:items => items
|
:items => items
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
get '/item' do
|
||||||
|
redirect '/item/list'
|
||||||
|
end
|
||||||
|
get '/item/list' do
|
||||||
|
items = Item.all
|
||||||
|
erb :'item/list', :locals => {
|
||||||
|
:title => 'List of Items',
|
||||||
|
:items => items
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
get '/item/create' do
|
||||||
|
erb :'item/create', :locals => {
|
||||||
|
:title => 'Create New Item'
|
||||||
|
}
|
||||||
|
end
|
||||||
|
post '/item/create' do
|
||||||
|
item = Item.create(
|
||||||
|
name: params[:item_name],
|
||||||
|
serial_number: params[:item_serial],
|
||||||
|
sku_number: params[:item_sku],
|
||||||
|
purchased_from: params[:item_purchase_from],
|
||||||
|
purchased_at: params[:item_purchase_date],
|
||||||
|
manufacturer: params[:item_manufacturer],
|
||||||
|
type: params[:item_type]
|
||||||
|
)
|
||||||
|
|
||||||
|
redirect "/item/#{item.id}"
|
||||||
|
end
|
||||||
|
64
views/item/create.erb
Normal file
64
views/item/create.erb
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<div class="row">
|
||||||
|
<div class="twelve columns">
|
||||||
|
<h1>Create new item</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="twelve columns">
|
||||||
|
<form action="/item/create" method="POST" class="u-full-width">
|
||||||
|
<div class="row">
|
||||||
|
<div class="columns twelve">
|
||||||
|
<label for="item_name">Item name:</label>
|
||||||
|
<input class="u-full-width" type="text" placeholder="My new item" id="item_name" name="item_name" required>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="six columns">
|
||||||
|
<label for="item_serial">Serial number:</label>
|
||||||
|
<input class="u-full-width" type="text" placeholder="0123456789" id="item_serial" name="item_serial">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="six columns">
|
||||||
|
<label for="item_sku">SKU number:</label>
|
||||||
|
<input class="u-full-width" type="text" placeholder="ABC12345678" id="item_sku" name="item_sku">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="six columns">
|
||||||
|
<label for="item_purchase_from">Purchased from:</label>
|
||||||
|
<input class="u-full-width" type="text" placeholder="Newegg" id="item_purchase_from" name="item_purchase_from">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="six columns">
|
||||||
|
<label for="item_purchase_date">Purchased at:</label>
|
||||||
|
<input class="u-full-width" type="datetime-local" id="item_purchase_date" name="item_purchase_date">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="six columns">
|
||||||
|
<label for="item_manufacturer">Manufacturer:</label>
|
||||||
|
<input class="u-full-width" type="text" placeholder="Manufacturer" id="item_manufacturer" name="item_manufacturer">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="six columns">
|
||||||
|
<label for="item_type">Item type</label>
|
||||||
|
<select class="u-full-width" id="item_type" name="item_type">
|
||||||
|
<option value="cpu">Processor</option>
|
||||||
|
<option value="motherboard">Motherboard</option>
|
||||||
|
<option value="memory">Memory (RAM)</option>
|
||||||
|
<option value="psu">Power Supply</option>
|
||||||
|
<option value="case">Case</option>
|
||||||
|
<option value="storage">Storage Device</option>
|
||||||
|
<option value="gpu">Graphics Card</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input class="button-primary u-full-width" type="submit" value="Submit">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
7
views/item/list.erb
Normal file
7
views/item/list.erb
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<p><a href="/item/create">Create new item</a></p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<% items.each do |item| %>
|
||||||
|
<li><%= item.name %></li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
@ -13,6 +13,7 @@
|
|||||||
<nav id="main-nav">
|
<nav id="main-nav">
|
||||||
<h3>Raven</h3>
|
<h3>Raven</h3>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="/">Dashboard</a></li>
|
||||||
<li><a href="/item/list">Items</a></li>
|
<li><a href="/item/list">Items</a></li>
|
||||||
<li><a href="/license/list">Licenses</a></li>
|
<li><a href="/license/list">Licenses</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user