<%= form.text_field :title, :onchange => "TopicForm.editNewTitle(this);" %> <% if admin? or current_user.moderator_of?(@topic.forum) %> <% end %>

<% if @topic.new_record? %>


<%= form.text_area :body, :rows => 12 %>

<% end %> <% if admin? and not @topic.new_record? %>


<%= form.select :forum_id, Forum.find(:all, :order => "position").map {|x| [x.name, x.id] } %>

<% end %>