mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
14 lines
247 B
Text
14 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 %>
|