Guest User

Untitled

a guest
Jun 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # view
  2.  
  3. %h3=h @blog.title
  4. .entry_box
  5. .time_box
  6. =h "gepostet: #{@blog.created_at.to_s(:chatty)}"
  7. =h @blog.body
  8.  
  9. = render 'comment_form'
  10.  
  11. - if admin?
  12. = link_to 'Edit', edit_blog_path(@blog)
  13.  
  14. # partial
  15.  
  16. %h3 Hinterlasse einen Kommentar
  17.  
  18. = form_for Comment.new do |f|
  19. %p
  20. %div= f.label :title, 'Titel'
  21. = f.text_field :title
  22. %p
  23. %div= f.label :name, 'Username'
  24. = f.text_field :name
  25. %p
  26. %div= f.label :body, 'Nachricht'
  27. = f.text_area :body
Add Comment
Please, Sign In to add comment