% unless CurrentUser.user.is_contributor? %>
Before editing, read the <%= link_to "how to tag guide", wiki_page_path(:id => "howto:tag") %>.
<% end %>
<%= form_for(post, :html => {:class => "simple_form"}) do |f| %>
<%= f.hidden_field :old_tags, :value => post.tag_string %>
<% if post.is_rating_locked? %>
This post is rating locked.
<% else %>
<%= f.label :blank, "Rating" %>
<% end %>
<% if CurrentUser.user.is_privileged? %>
<%= f.label :blank, "Lock" %>
<% end %>
<%= f.label :parent_id, "Parent" %>
<%= f.text_field :parent_id, :size => 5 %>
<%= f.label :source %>
<%= f.text_field :source %>
<%= f.label :tag_string, "Tags" %>
<%= f.text_area :tag_string , :size => "50x3" %>
<%= submit_tag "Submit" %>
<% end %>