<%# # @file # This file is a form for creating new topics. It is no longer used. #%>
<%= form_for @topic || Topic.new, url: topics_path do |form| %>

Add Topic

<%= select_tag "category", options_from_collection_for_select(Metacode.order("name ASC").all, "id", "name") %> <%= form.text_field :name %> <%= form.text_area :desc, class: "description", :rows => 5 %> <%= form.text_field :link, class: "link" %> <%= form.select(:permission, options_for_select(['commons', 'public', 'private'])) %> <%= form.submit "Add Topic", class: "addTopic", id: "addTopic" %> <% end %>