Edit Story
<%= form_for @story, :url => story_path(@story.short_id), :method => :put, :html => { :id => "edit_story" } do |f| %> <%= render :partial => "stories/form", :locals => { :story => @story, :f => f } %> <% if @user.is_moderator? %>
<%= f.label :merge_story_short_id, "Merge Into:", :class => "required" %> <%= f.text_field :merge_story_short_id, :autocomplete => "off", :placeholder => "Short id of story into which this story " << "be merged" %>
<%= f.label :unavailable_at, "Unavailable:", :class => "required" %> <%= f.check_box :is_unavailable %> <%= f.label :unavailable_at, "Source URL is unavailable, " << "enable display of cached text", :class => "normal" %>
<% if @story.user_id != @user.id %>
<%= f.label :moderation_reason, "Mod Reason:", :class => "required" %> <%= f.text_field :moderation_reason, :autocomplete => "off" %>
<% end %>
<% end %>

Markdown formatting available
<%= submit_tag "Save" %>  or cancel editing
<%= render :partial => "global/markdownhelp", :locals => { :allow_images => true } %>
<% end %>