1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 02:28:50 +01:00

Add problem type

This commit is contained in:
2014-11-30 16:42:50 +01:00
parent bbbadc5184
commit b7a0303206
20 changed files with 339 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<%= form_for(@problem) do |f| %>
<% if @problem.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@problem.errors.count, "error") %> prohibited this problem from being saved:</h2>
<ul>
<% @problem.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :title %><br>
<%= f.text_field :title %>
</div>
<div class="field">
<%= f.label :content %><br>
<%= f.text_area :content %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>

View File

@@ -0,0 +1,6 @@
<h1>Editing problem</h1>
<%= render 'form' %>
<%= link_to 'Show', @problem %> |
<%= link_to 'Back', problems_path %>

View File

@@ -0,0 +1,27 @@
<h1>Listing problems</h1>
<table>
<thead>
<tr>
<th>Title</th>
<th>Content</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @problems.each do |problem| %>
<tr>
<td><%= problem.title %></td>
<td><%= problem.content %></td>
<td><%= link_to 'Show', problem %></td>
<td><%= link_to 'Edit', edit_problem_path(problem) %></td>
<td><%= link_to 'Destroy', problem, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Problem', new_problem_path %>

View File

@@ -0,0 +1,4 @@
json.array!(@problems) do |problem|
json.extract! problem, :id, :title, :content
json.url problem_url(problem, format: :json)
end

View File

@@ -0,0 +1,5 @@
<h1>New problem</h1>
<%= render 'form' %>
<%= link_to 'Back', problems_path %>

View File

@@ -0,0 +1,14 @@
<p id="notice"><%= notice %></p>
<p>
<strong>Title:</strong>
<%= @problem.title %>
</p>
<p>
<strong>Content:</strong>
<%= @problem.content %>
</p>
<%= link_to 'Edit', edit_problem_path(@problem) %> |
<%= link_to 'Back', problems_path %>

View File

@@ -0,0 +1 @@
json.extract! @problem, :id, :title, :content, :created_at, :updated_at