mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
13 lines
247 B
Text
13 lines
247 B
Text
<%= form_for(@post) do |f| %>
|
|
<%= f.error_messages %>
|
|
<%= f.hidden_field :topic_id %>
|
|
<p>
|
|
Topic: <%= namelink @post.topic %>
|
|
</p>
|
|
<p>
|
|
<%= f.text_area :text, :rows => 15, :cols => 108 %>
|
|
</p>
|
|
<p>
|
|
<%= f.submit 'Save' %>
|
|
</p>
|
|
<% end %>
|