loos
11 years ago
5 changed files with 77 additions and 69 deletions
@ -1,19 +1,23 @@ |
|||
<%= form_for @bike, html: {class: 'form-horizontal'} do |f| %> |
|||
<% if @bike.errors.any? %> |
|||
<div id="error_explanation"> |
|||
<h2><%= pluralize(@bike.errors.count, "error") %> prohibited this bike from being saved:</h2> |
|||
<div class="container"> |
|||
<%= form_for @bike, html: {class: 'form-horizontal'} do |f| %> |
|||
<% if @bike.errors.any? %> |
|||
<div id="error_explanation"> |
|||
<h2><%= pluralize(@bike.errors.count, "error") %> prohibited this bike from being saved:</h2> |
|||
|
|||
<ul> |
|||
<% @bike.errors.full_messages.each do |msg| %> |
|||
<li><%= msg %></li> |
|||
<% end %> |
|||
</ul> |
|||
</div> |
|||
<% end %> |
|||
<ul> |
|||
<% @bike.errors.full_messages.each do |msg| %> |
|||
<li><%= msg %></li> |
|||
<% end %> |
|||
</ul> |
|||
</div> |
|||
<% end %> |
|||
|
|||
<%= render 'fields', f: f %> |
|||
<%= render 'fields', f: f %> |
|||
|
|||
<div class="actions col-sm-offset-2"> |
|||
<%= f.submit class: "btn btn-default" %> |
|||
</div> |
|||
<% end %> |
|||
<div class="row"> |
|||
<div class="actions col-sm-offset-2"> |
|||
<%= f.submit class: "btn btn-default" %> |
|||
</div> |
|||
</div> |
|||
<% end %> |
|||
</div> |
|||
|
@ -1,6 +1,8 @@ |
|||
<h1>Editing bike</h1> |
|||
<div class="container"> |
|||
<h1>Editing bike</h1> |
|||
|
|||
<%= render 'form' %> |
|||
<%= render 'form' %> |
|||
|
|||
<%= link_to 'Show', @bike %> | |
|||
<%= link_to 'Back', bikes_path %> |
|||
<%= link_to 'Show', @bike %> | |
|||
<%= link_to 'Back', bikes_path %> |
|||
</div> |
|||
|
@ -1,29 +1,30 @@ |
|||
<h1>Listing bikes</h1> |
|||
<div class="container"> |
|||
|
|||
<table class="table table-striped table-bordered table-hover"> |
|||
<thead> |
|||
<tr> |
|||
<th> Brand </th> |
|||
<th> Model </th> |
|||
<th></th> |
|||
<th></th> |
|||
<th></th> |
|||
</tr> |
|||
</thead> |
|||
<h1>Listing bikes</h1> |
|||
|
|||
<tbody> |
|||
<% @bikes.each do |bike| %> |
|||
<table class="table table-striped table-bordered table-hover"> |
|||
<thead> |
|||
<tr> |
|||
<td><%= bike.brand %></td> |
|||
<td><%= bike.model %></td> |
|||
<td><%= link_to 'Show', bike %></td> |
|||
<td><%= link_to 'Edit', edit_bike_path(bike) %></td> |
|||
<td><%= link_to 'Destroy', bike, method: :delete, data: { confirm: 'Are you sure?' } %></td> |
|||
<th> Brand </th> |
|||
<th> Model </th> |
|||
<th></th> |
|||
<th></th> |
|||
<th></th> |
|||
</tr> |
|||
<% end %> |
|||
</tbody> |
|||
</table> |
|||
</thead> |
|||
<tbody> |
|||
<% @bikes.each do |bike| %> |
|||
<tr> |
|||
<td><%= bike.brand %></td> |
|||
<td><%= bike.model %></td> |
|||
<td><%= link_to 'Show', bike %></td> |
|||
<td><%= link_to 'Edit', edit_bike_path(bike) %></td> |
|||
<td><%= link_to 'Destroy', bike, method: :delete, data: { confirm: 'Are you sure?' } %></td> |
|||
</tr> |
|||
<% end %> |
|||
</tbody> |
|||
</table> |
|||
|
|||
<br> |
|||
|
|||
<%= link_to ' + Log Bike', new_bike_path %> |
|||
<br> |
|||
<%= link_to ' + Log Bike', new_bike_path, class: "btn btn-default" %> |
|||
</div> |
|||
|
@ -1,7 +1,9 @@ |
|||
<p id="notice"><%= notice %></p> |
|||
<%= form_for(@bike) do |f| %> |
|||
<%= render 'fields', f: f, disabled: true %> |
|||
<% end %> |
|||
<div class="container"> |
|||
<p id="notice"><%= notice %></p> |
|||
<%= form_for(@bike) do |f| %> |
|||
<%= render 'fields', f: f, disabled: true %> |
|||
<% end %> |
|||
|
|||
<%= link_to 'Edit', edit_bike_path(@bike) %> | |
|||
<%= link_to 'Back', bikes_path %> |
|||
<%= link_to 'Edit', edit_bike_path(@bike) %> | |
|||
<%= link_to 'Back', bikes_path %> |
|||
</div> |
|||
|
Loading…
Reference in new issue