<%= error_messages_for :page %> <% form_for :page, :action => url(:page) do -%>
Create a page

Name

<%= text_control :name, :size => 50 %>

<%= checkbox_control :published, :label => ' Published in blog?', :value => "1" %>

Department

<%= text_control :department, :size => 50 %>

Description

<%= text_area_control :description, :rows => 10, :cols => 70 %>

Tags

<%= text_control 'tag_names', :size => 30 -%>


<%= submit_button 'Create' %>

<% end -%>