mirror of
https://github.com/projekteuler/projekteuler.git
synced 2026-01-27 02:28:50 +01:00
Make translations a nested resource for each problem
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<%= form_for(@translation) do |f| %>
|
||||
<%= form_for([@problem, @translation]) do |f| %>
|
||||
<% if @translation.errors.any? %>
|
||||
<div id="error_explanation">
|
||||
<h2><%= pluralize(@translation.errors.count, "error") %> prohibited this problem from being saved:</h2>
|
||||
|
||||
@@ -19,6 +19,4 @@
|
||||
</tbody>
|
||||
</table>
|
||||
<%= render 'translation_pagination' %>
|
||||
<br>
|
||||
|
||||
<%= link_to 'New Translation', new_translation_path, class: 'btn btn-default' %>
|
||||
<br>
|
||||
@@ -1,4 +1,4 @@
|
||||
<h1>New translation</h1>
|
||||
<h1>New translation for problem <%= @problem.id %></h1>
|
||||
|
||||
<%= render 'form' %>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user