If the artist of this image posted some interesting additional information about this work, you can copy it here. <%= link_to "View help.", wiki_pages_path(:search => {:title => "help:artist_commentary"}) %>
<%= form_tag(create_or_update_artist_commentaries_path(:format => :js), :remote => true, :id => "edit-commentary", :class => "simple_form", :method => :put) do %>
<%= hidden_field :artist_commentary, :post_id, :value => post.id %>
Original title
<%= text_field :artist_commentary, :original_title, :value => post.artist_commentary.try(:original_title) %>
Original description
<%= text_area :artist_commentary, :original_description, :size => "40x6", :value => post.artist_commentary.try(:original_description) %>
Translated title
<%= text_field :artist_commentary, :translated_title, :value => post.artist_commentary.try(:translated_title) %>
Translated description
<%= text_area :artist_commentary, :translated_description, :size => "40x6", :value => post.artist_commentary.try(:translated_description) %>
<% if post.has_tag?("commentary") %>
<%= check_box :artist_commentary, :remove_commentary_tag %>
Remove commentary tag
<% else %>
<%= check_box :artist_commentary, :add_commentary_tag %>
Add commentary tag
<% end %>
<% if post.has_tag?("commentary_request") %>
<%= check_box :artist_commentary, :remove_commentary_request_tag %>
Remove commentary_request tag
<% else %>
<%= check_box :artist_commentary, :add_commentary_request_tag %>
Add commentary_request tag
<% end %>
<% if post.has_tag?("check_commentary") %>
<%= check_box :artist_commentary, :remove_commentary_check_tag %>
Remove check_commentary tag
<% else %>
<%= check_box :artist_commentary, :add_commentary_check_tag %>
Add check_commentary tag
<% end %>
<% end %>