annotate app/views/messages/new.html.erb @ 1519:afce8026aaeb redmine-2.4-integration

Merge from branch "live"
author Chris Cannam
date Tue, 09 Sep 2014 09:34:53 +0100
parents 433d4f72a19b
children
rev   line source
Chris@0 1 <h2><%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> &#187; <%= l(:label_message_new) %></h2>
Chris@0 2
Chris@1115 3 <%= form_for @message, :url => {:action => 'new'}, :html => {:multipart => true, :id => 'message-form'} do |f| %>
Chris@0 4 <%= render :partial => 'form', :locals => {:f => f} %>
Chris@0 5 <%= submit_tag l(:button_create) %>
Chris@1115 6 <%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board}, 'message-form') %>
Chris@0 7 <% end %>
Chris@0 8
Chris@0 9 <div id="preview" class="wiki"></div>