Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.72 KB | None | 0 0
  1.     <h1>TUTAJ SA KOMENTARZE</h1>
  2.  
  3.     <ul>
  4.     <% @comments.each do |comment| %>
  5.         <li>
  6.             <p><%= comment.description%></p>
  7.             <p>uzytkownik <%= comment.user%></p>
  8.  
  9.         </li>
  10.     <% end %>
  11.     </ul>
  12. <%= form_for(@comment) do |f| %>
  13.   <% if @comment.errors.any? %>
  14.     <div id="error_explanation">
  15.       <h2><%= pluralize(@comment.errors.count, "error") %> prohibited this comment from being saved:</h2>
  16.  
  17.       <ul>
  18.       <% @comment.errors.full_messages.each do |message| %>
  19.         <li><%= message %></li>
  20.       <% end %>
  21.       </ul>
  22.     </div>
  23.   <% end %>
  24.  
  25.   <div class="field">
  26.     <%= f.label :description %><br>
  27.     <%= f.text_area :description %>
  28.   </div>
  29.   <div class="actions">
  30.     <%= f.submit %>
  31.   </div>
  32. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement