instiki/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb
Jacques Distler 5292899c9a Rails 2.1 RC1
Updated Instiki to Rails 2.1 RC1 (aka 2.0.991).
2008-05-17 23:22:34 -05:00

18 lines
385 B
Plaintext

<h1>New <%= singular_name %></h1>
<%% form_for(@<%= singular_name %>) do |f| %>
<%%= f.error_messages %>
<% for attribute in attributes -%>
<p>
<%%= f.label :<%= attribute.name %> %><br />
<%%= f.<%= attribute.field_type %> :<%= attribute.name %> %>
</p>
<% end -%>
<p>
<%%= f.submit "Create" %>
</p>
<%% end %>
<%%= link_to 'Back', <%= plural_name %>_path %>