To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / news / new.rhtml @ 441:cbce1fd3b1b7

History | View | Annotate | Download (664 Bytes)

1
<h2><%=l(:label_news_new)%></h2>
2

    
3
<% labelled_tabular_form_for :news, @news, :url => project_news_index_path(@project),
4
                                           :html => { :id => 'news-form' } do |f| %>
5
<%= render :partial => 'news/form', :locals => { :f => f } %>
6
<%= submit_tag l(:button_create) %>
7
<%= link_to_remote l(:label_preview), 
8
                   { :url => preview_news_path(:project_id => @project),
9
                     :method => 'get',
10
                     :update => 'preview',
11
                     :with => "Form.serialize('news-form')"
12
                   }, :accesskey => accesskey(:preview) %>
13
<% end %>
14
<div id="preview" class="wiki"></div>