Before editing, read the <%= link_to "how to tag guide", wiki_page_path(:id => "howto:tag") %>.
<% if post.is_rating_locked? %> This post is rating locked. <% else %> <%= f.label :rating_explicit, "Explicit" %> <%= f.radio_button :rating, :e %> <%= f.label :rating_questionable, "Questionable" %> <%= f.radio_button :rating, :q %> <%= f.label :rating_safe, "Safe" %> <%= f.radio_button :rating, :s %> <% end %>
<% if CurrentUser.user.is_privileged? %><%= f.label :is_note_locked, "Lock notes" %> <%= f.check_box :is_note_locked %>
<%= f.label :is_rating_locked, "Lock rating" %> <%= f.check_box :is_rating_locked %>
<% end %><%= f.label :source %> <%= f.text_field :source %>
<%= f.label :tag_string, "Tags" %> <%= f.text_area :tag_string , :size => "50x3" %>
<%= submit_tag "Submit" %> <% end %>