Sha256: b30c29149c69c6209da887d1bc31e63271e985ac9174fc40c0b74fbcc1b4ae95
Contents?: true
Size: 617 Bytes
Versions: 2
Compression:
Stored size: 617 Bytes
Contents
<%= form_for(@comment) do |f| %> <% if @comment.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@comment.errors.count, "error") %> prohibited this comment from being saved:</h2> <ul> <% @comment.errors.full_messages.each do |message| %> <li><%= message %></li> <% end %> </ul> </div> <% end %> <div class="field"> <%= f.label :content %><br> <%= f.text_field :content %> </div> <div class="field"> <%= f.label :post_id %><br> <%= f.number_field :post_id %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hashids_rails-0.0.2 | test/dummy/app/views/comments/_form.html.erb |
hashids_rails-0.0.1 | test/dummy/app/views/comments/_form.html.erb |