%p.normal You're about to submit a quote to the Four Island Quotes DB! This is great, but first, there are a few rules/guidelines/things you should know before submitting: %ul %li Quotes should come from a chat involving one or more Four Island regulars. This is not a strict guideline, as quotes are often submitted from video chats or real life situations possibly involving only one Four Island regular, but just make sure before submitting that the quote you're submitting would be appreciated by other Four Island regulars. %li Make sure to remove timestamps, if present in your quote, before submitting. %li If your quote is extremely offensive, it will probably not be approved. This is not referring to profanity--you can leave profanity uncensored in your quotes. %li If you want to, you can enter your username in the box below the quote labelled "Your username" (this is completely optional). This is mostly for record-keeping and statistical purposes; submitting a quote of yourself being awesome and then signing your name under it won't decrease the chances of it being accepted. %li You can enter any notes about the quote that may be important (such as context, or if it's a memorable quote, why it's memorable) in the box below your quote. %li You can also enter a list of comma-separated tags in the provided box. This is, again, optional, but it's suggested that you do tag your quote, especially with #{link_to "tags that already exist", tags_quotes_path}, though creating new tags is not frowned upon. %h3 Your Quote = form_for @quote do |f| - if @quote.errors.any? #error-messages %h4 Errors were found! %ul - @quote.errors.full_messages.each do |msg| %li= msg .form-field= f.text_area :content .form-field Your username (optional): #{f.text_field :submitter} .form-field Notes (optional): .form-field= f.text_area :notes .form-field Tags (optional): .tags-input= f.text_field :tag_list, type: :tags, value: f.object.tag_list.join(",") .form-field= f.submit