6
Estoy siguiendo este sencillo tutorial http://railscasts.com/episodes/37-simple-search-form que parece ser excelente, pero mi etiqueta de formulario no parece funcionar. Aquí está mi código html! La etiqueta del formulario ni siquiera aparece.Rieles form_tag no muestra
<h1>Listing applications</h1>
<% form_tag applications_path do %>
<p>
<%= text_field_tag :search %>
<%= submit_tag "Search" %>
</p>
<% end %>
<table>
<tr>
<th>Name</th>
<th>Enviroment</th>
<th>Applicationurl</th>
<th>Server</th>
<th>Additional Servers</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @applications.each do |application| %>
<tr>
<td><%= application.name %></td>
<td><%= application.date %></td>
<td><%= application.size %></td>
<td><%= application.author %></td>
<td><%= application.addi_servers %></td>
<td><%= link_to 'Show', application %></td>
<td><%= link_to 'Edit', edit_application_path(application) %></td>
<td><%= link_to 'Destroy', application, confirm: 'Are you sure?', method: :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New Application', new_application_path %>
Y tengo un solo modelo, "Aplicación"
el video no incluyó un '=' –
Creo que tal vez las versiones anteriores de los rieles no lo requieren para las etiquetas de formulario? – Dty
The Ruby on Rails Guide to Rails Form Helpers falta el "=" –