June 2025
Intermediate to advanced
488 pages
12h 27m
English
Now we’re entering the homestretch. The new order page is next:
| | <% content_for :title, "New order" %> |
| | |
| | <div class="md:w-2/3 w-full"> |
| » | <h1 class="font-bold text-4xl"><%= t('.legend') %></h1> |
| | |
| | <%= render "form", order: @order %> |
| | </div> |
Here’s the form that’s used by this page, updated to ensure that the locale is passed along with any requests, and to translate the fields and submit button:
| » | <%= form_with(model: order, class: "contents", |
| » | url: orders_path(locale: I18n.locale)) do |form| %> |
| | |
| | <% if order.errors.any? %> |
| | <div id="error_explanation" class= ... |
Read now
Unlock full access