<%= form_for(@comic) do |f| %> <%= render 'system/error_explanation', :obj => @comic %>
<%= f.label :title %>
<%= f.text_field :title %>
<%= f.label :visible %>
<%= f.collection_select :visible, t_select_items(MagicNumber['comic_visible_items']), :last, :first, :html => {:selected => @comic.visible} %>
<%= f.label :author_id %>
<%= h @author.name %>
<%= f.submit %>
<% end %>