<h1>Nowa wiadomość</h1>

<p>Odpowiedź na:;
<b><%= @parent.subject %></b></p>

<% form_tag :action => 'reply', :parent => @parent.id do %>

  <%= error_messages_for 'post' %>

  <p><label for="post_subject">Temat:</label>;
  <%= text_field 'post', 'subject', :size => 40 %></p>

  <p><label for="post_body">Body:</label>;
  <%= text_area 'post', 'body', :rows => 4 %></p>

  <%= submit_tag "Reply" %>

<% end %>

<%= link_to 'Wstecz', :action => 'list' %>