aboutsummaryrefslogblamecommitdiffstats
path: root/guides/code/getting_started/app/views/posts/show.html.erb
blob: 0580879c1a8f9e064329da52a7127af9ba722f5f (plain) (tree)
1
2
3
4
5
6
7
8
9
   
                         

                    
 
   

                        
    
 

















                                                     
<p>
  <strong>Title:</strong>
  <%= @post.title %>
</p>

<p>
  <strong>Text:</strong>
  <%= @post.text %>
</p>


<h2>Add a comment:</h2>
<%= form_for([@post, @post.comments.build]) do |f| %>
  <p>
    <%= f.label :commenter %><br />
    <%= f.text_field :commenter %>
  </p>
  <p>
    <%= f.label :body %><br />
    <%= f.text_area :body %>
  </p>
  <p>
    <%= f.submit %>
  </p>
<% end %>

<%= link_to 'Edit Post', edit_post_path(@post) %> |
<%= link_to 'Back to Posts', posts_path %>