<%= form_for(@known_issue) do |f| %> <%= error_messages_for @known_issue %>
<%= f.label :title, ts("Beta Revision") + "*" %>
<%= f.text_field :title %>
<%= f.label :content, ts("Recent Known Issues") %>

<%= allowed_html_instructions %>

<% use_tinymce %>
<%= f.text_area :content, :class => "mce-editor observe_textlength", :id => "content" %> <%= live_validation_for_field('content', :maximum_length => ArchiveConfig.CONTENT_MAX, :minimum_length => ArchiveConfig.CONTENT_MIN, :tooLongMessage => ts("We salute your ambition! But sadly the content must be less than %{max} letters long.", :max => ArchiveConfig.CONTENT_MAX.to_s), :tooShortMessage => ts("Brevity is the soul of wit, but your content does have to be at least %{min} letters long.", :min => ArchiveConfig.CONTENT_MIN.to_s), :failureMessage => ts("You need to post some content here.")) %> <%= generate_countdown_html("content", ArchiveConfig.CONTENT_MAX) %>
<%= ts("Post") %>
<%= submit_tag ts("Post"), :name => 'post_button' %>
<% end %>