From 4c5c8b978d6bc70811e95e6da5afd06ec7a2e27e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 29 Apr 2014 03:47:29 -0400 Subject: ran ./generate.sh --- app/views/matches/_form.html.erb | 8 -------- app/views/matches/index.html.erb | 4 ---- app/views/matches/index.json.jbuilder | 2 +- app/views/matches/show.html.erb | 10 ---------- app/views/matches/show.json.jbuilder | 2 +- 5 files changed, 2 insertions(+), 24 deletions(-) (limited to 'app/views') diff --git a/app/views/matches/_form.html.erb b/app/views/matches/_form.html.erb index 9e09fd8..768b655 100644 --- a/app/views/matches/_form.html.erb +++ b/app/views/matches/_form.html.erb @@ -23,14 +23,6 @@ <%= f.label :winner_id %>
<%= f.text_field :winner_id %> -
- <%= f.label :remote_id %>
- <%= f.text_area :remote_id %> -
-
- <%= f.label :submitted_peer_evaluations %>
- <%= f.number_field :submitted_peer_evaluations %> -
<%= f.submit %>
diff --git a/app/views/matches/index.html.erb b/app/views/matches/index.html.erb index 766c3e8..85c94f2 100644 --- a/app/views/matches/index.html.erb +++ b/app/views/matches/index.html.erb @@ -6,8 +6,6 @@ Status Tournament stage Winner - Remote - Submitted peer evaluations @@ -20,8 +18,6 @@ <%= match.status %> <%= match.tournament_stage %> <%= match.winner %> - <%= match.remote_id %> - <%= match.submitted_peer_evaluations %> <%= link_to 'Show', match %> <%= link_to 'Edit', edit_match_path(match) %> <%= link_to 'Destroy', match, method: :delete, data: { confirm: 'Are you sure?' } %> diff --git a/app/views/matches/index.json.jbuilder b/app/views/matches/index.json.jbuilder index bef149d..d5a97fe 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, :winner_id, :remote_id, :submitted_peer_evaluations + json.extract! match, :id, :status, :tournament_stage_id, :winner_id 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 8384ff2..b47a045 100644 --- a/app/views/matches/show.html.erb +++ b/app/views/matches/show.html.erb @@ -15,15 +15,5 @@ <%= @match.winner %>

-

- Remote: - <%= @match.remote_id %> -

- -

- Submitted peer evaluations: - <%= @match.submitted_peer_evaluations %> -

- <%= link_to 'Edit', edit_match_path(@match) %> | <%= link_to 'Back', matches_path %> diff --git a/app/views/matches/show.json.jbuilder b/app/views/matches/show.json.jbuilder index 145f069..dd2cde3 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, :winner_id, :remote_id, :submitted_peer_evaluations, :created_at, :updated_at +json.extract! @match, :id, :status, :tournament_stage_id, :winner_id, :created_at, :updated_at -- cgit v1.2.3