summaryrefslogtreecommitdiff
path: root/app/views/matches
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-22 15:53:32 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-22 15:53:32 -0400
commitc927cd7c043d982f8ffb51c8a78288d88d825d82 (patch)
tree600b2ad18f8faa3ff5d31bfe6ac61edf59fb8bc9 /app/views/matches
parentd36c548ca756f8371c08991287e3625d031cf8b3 (diff)
run ./generate.sh
Diffstat (limited to 'app/views/matches')
-rw-r--r--app/views/matches/_form.html.erb6
-rw-r--r--app/views/matches/index.html.erb2
-rw-r--r--app/views/matches/index.json.jbuilder2
-rw-r--r--app/views/matches/show.html.erb5
-rw-r--r--app/views/matches/show.json.jbuilder2
5 files changed, 3 insertions, 14 deletions
diff --git a/app/views/matches/_form.html.erb b/app/views/matches/_form.html.erb
index 65069d1..9e09fd8 100644
--- a/app/views/matches/_form.html.erb
+++ b/app/views/matches/_form.html.erb
@@ -20,16 +20,12 @@
<%= f.text_field :tournament_stage_id %>
</div>
<div class="field">
- <%= f.label :name %><br>
- <%= f.text_field :name %>
- </div>
- <div class="field">
<%= f.label :winner_id %><br>
<%= f.text_field :winner_id %>
</div>
<div class="field">
<%= f.label :remote_id %><br>
- <%= f.text_field :remote_id %>
+ <%= f.text_area :remote_id %>
</div>
<div class="field">
<%= f.label :submitted_peer_evaluations %><br>
diff --git a/app/views/matches/index.html.erb b/app/views/matches/index.html.erb
index 414d57d..766c3e8 100644
--- a/app/views/matches/index.html.erb
+++ b/app/views/matches/index.html.erb
@@ -5,7 +5,6 @@
<tr>
<th>Status</th>
<th>Tournament stage</th>
- <th>Name</th>
<th>Winner</th>
<th>Remote</th>
<th>Submitted peer evaluations</th>
@@ -20,7 +19,6 @@
<tr>
<td><%= match.status %></td>
<td><%= match.tournament_stage %></td>
- <td><%= match.name %></td>
<td><%= match.winner %></td>
<td><%= match.remote_id %></td>
<td><%= match.submitted_peer_evaluations %></td>
diff --git a/app/views/matches/index.json.jbuilder b/app/views/matches/index.json.jbuilder
index f2499ac..bef149d 100644
--- a/app/views/matches/index.json.jbuilder
+++ b/app/views/matches/index.json.jbuilder
@@ -1,4 +1,4 @@
json.array!(@matches) do |match|
- json.extract! match, :id, :status, :tournament_stage_id, :name, :winner_id, :remote_id, :submitted_peer_evaluations
+ json.extract! match, :id, :status, :tournament_stage_id, :winner_id, :remote_id, :submitted_peer_evaluations
json.url match_url(match, format: :json)
end
diff --git a/app/views/matches/show.html.erb b/app/views/matches/show.html.erb
index 3356e28..8384ff2 100644
--- a/app/views/matches/show.html.erb
+++ b/app/views/matches/show.html.erb
@@ -11,11 +11,6 @@
</p>
<p>
- <strong>Name:</strong>
- <%= @match.name %>
-</p>
-
-<p>
<strong>Winner:</strong>
<%= @match.winner %>
</p>
diff --git a/app/views/matches/show.json.jbuilder b/app/views/matches/show.json.jbuilder
index 5b543ea..145f069 100644
--- a/app/views/matches/show.json.jbuilder
+++ b/app/views/matches/show.json.jbuilder
@@ -1 +1 @@
-json.extract! @match, :id, :status, :tournament_stage_id, :name, :winner_id, :remote_id, :submitted_peer_evaluations, :created_at, :updated_at
+json.extract! @match, :id, :status, :tournament_stage_id, :winner_id, :remote_id, :submitted_peer_evaluations, :created_at, :updated_at