Sha256: b761986ad64c9dd0dc1626cfdcbe861bdcf2c4a8bdad862c8b2b1cafdfe59fde
Contents?: true
Size: 591 Bytes
Versions: 3
Compression:
Stored size: 591 Bytes
Contents
<%= form_for(@blog) do |f| %> <% if @blog.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@blog.errors.count, "error") %> prohibited this blog from being saved:</h2> <ul> <% @blog.errors.full_messages.each do |msg| %> <li><%= msg %></li> <% end %> </ul> </div> <% end %> <div class="field"> <%= f.label :title %><br /> <%= f.text_field :title %> </div> <div class="field"> <%= f.label :content %><br /> <%= f.text_area :content %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
induction_cannon_01-0.0.5 | app/views/blogs/_form.html.erb |
induction_cannon_01-0.0.3 | app/views/blogs/_form.html.erb |
induction_cannon_01-0.0.2 | app/views/blogs/_form.html.erb |