annotate app/views/news/edit.html.erb @ 1524:82fac3dcf466
redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Thu, 11 Sep 2014 10:24:38 +0100 |
parents |
433d4f72a19b |
children |
|
rev |
line source |
Chris@0
|
1 <h2><%=l(:label_news)%></h2>
|
Chris@0
|
2
|
Chris@1115
|
3 <%= labelled_form_for @news, :html => { :id => 'news-form', :multipart => true, :method => :put } do |f| %>
|
Chris@0
|
4 <%= render :partial => 'form', :locals => { :f => f } %>
|
Chris@0
|
5 <%= submit_tag l(:button_save) %>
|
Chris@1115
|
6 <%= preview_link preview_news_path(:project_id => @project, :id => @news), 'news-form' %>
|
Chris@0
|
7 <% end %>
|
Chris@0
|
8 <div id="preview" class="wiki"></div>
|
chris@22
|
9
|
chris@22
|
10 <% content_for :header_tags do %>
|
chris@22
|
11 <%= stylesheet_link_tag 'scm' %>
|
chris@22
|
12 <% end %>
|