Sha256: 9a2d0098dea39406a0dcd7878f5bf8cdb8d26e10aef3b712248a09aeed192d74

Contents?: true

Size: 507 Bytes

Versions: 5

Compression:

Stored size: 507 Bytes

Contents

<%= form_for(@project) do |f| %>
  <% if @project.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@project.errors.count, "error") %> prohibited this project from being saved:</h2>

      <ul>
      <% @project.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
mystro-volley-0.1.0 app/views/mystro_volley/projects/_form.html.erb
mystro-volley-0.1.0.rc3 app/views/mystro_volley/projects/_form.html.erb
mystro-volley-0.1.0.rc2 app/views/mystro_volley/projects/_form.html.erb
mystro-volley-0.1.0.rc1 app/views/mystro_volley/projects/_form.html.erb
lit-0.0.3 test/dummy/app/views/projects/_form.html.erb