Scaffolding in some mashy stuff
This commit is contained in:
17
rails/map-mash/app/views/layouts/mashes.html.erb
Normal file
17
rails/map-mash/app/views/layouts/mashes.html.erb
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
||||
<title>Mashes: <%= controller.action_name %></title>
|
||||
<%= stylesheet_link_tag 'scaffold' %>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p style="color: green"><%= flash[:notice] %></p>
|
||||
|
||||
<%= yield %>
|
||||
|
||||
</body>
|
||||
</html>
|
28
rails/map-mash/app/views/mashes/edit.html.erb
Normal file
28
rails/map-mash/app/views/mashes/edit.html.erb
Normal file
@@ -0,0 +1,28 @@
|
||||
<h1>Editing mash</h1>
|
||||
|
||||
<% form_for(@mash) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
|
||||
<p>
|
||||
<%= f.label :requester %><br />
|
||||
<%= f.text_field :requester %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.label :map_a %><br />
|
||||
<%= f.text_field :map_a %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.label :map_b %><br />
|
||||
<%= f.text_field :map_b %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.label :winner %><br />
|
||||
<%= f.text_field :winner %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.submit 'Update' %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
<%= link_to 'Show', @mash %> |
|
||||
<%= link_to 'Back', mashes_path %>
|
26
rails/map-mash/app/views/mashes/index.html.erb
Normal file
26
rails/map-mash/app/views/mashes/index.html.erb
Normal file
@@ -0,0 +1,26 @@
|
||||
<h1>Listing mashes</h1>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>Requester</th>
|
||||
<th>Map a</th>
|
||||
<th>Map b</th>
|
||||
<th>Winner</th>
|
||||
</tr>
|
||||
|
||||
<% @mashes.each do |mash| %>
|
||||
<tr>
|
||||
<td><%=h mash.requester %></td>
|
||||
<td><%=h mash.map_a %></td>
|
||||
<td><%=h mash.map_b %></td>
|
||||
<td><%=h mash.winner %></td>
|
||||
<td><%= link_to 'Show', mash %></td>
|
||||
<td><%= link_to 'Edit', edit_mash_path(mash) %></td>
|
||||
<td><%= link_to 'Destroy', mash, :confirm => 'Are you sure?', :method => :delete %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</table>
|
||||
|
||||
<br />
|
||||
|
||||
<%= link_to 'New mash', new_mash_path %>
|
27
rails/map-mash/app/views/mashes/new.html.erb
Normal file
27
rails/map-mash/app/views/mashes/new.html.erb
Normal file
@@ -0,0 +1,27 @@
|
||||
<h1>New mash</h1>
|
||||
|
||||
<% form_for(@mash) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
|
||||
<p>
|
||||
<%= f.label :requester %><br />
|
||||
<%= f.text_field :requester %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.label :map_a %><br />
|
||||
<%= f.text_field :map_a %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.label :map_b %><br />
|
||||
<%= f.text_field :map_b %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.label :winner %><br />
|
||||
<%= f.text_field :winner %>
|
||||
</p>
|
||||
<p>
|
||||
<%= f.submit 'Create' %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
<%= link_to 'Back', mashes_path %>
|
23
rails/map-mash/app/views/mashes/show.html.erb
Normal file
23
rails/map-mash/app/views/mashes/show.html.erb
Normal file
@@ -0,0 +1,23 @@
|
||||
<p>
|
||||
<b>Requester:</b>
|
||||
<%=h @mash.requester %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<b>Map a:</b>
|
||||
<%=h @mash.map_a %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<b>Map b:</b>
|
||||
<%=h @mash.map_b %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<b>Winner:</b>
|
||||
<%=h @mash.winner %>
|
||||
</p>
|
||||
|
||||
|
||||
<%= link_to 'Edit', edit_mash_path(@mash) %> |
|
||||
<%= link_to 'Back', mashes_path %>
|
Reference in New Issue
Block a user