summaryrefslogtreecommitdiffstats
path: root/app/views/issues/new.rhtml
blob: 1e9e323fefbb69f782ef0b00f06585a2690ec6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<h2><%=l(:label_issue_new)%></h2>

<% labelled_tabular_form_for :issue, @issue, 
                             :html => {:multipart => true, :id => 'issue-form'} do |f| %>
    <%= error_messages_for 'issue' %>
    <div class="box">
    <%= render :partial => 'issues/form', :locals => {:f => f} %>
    </div>
    <%= submit_tag l(:button_create) %>
    <%= link_to_remote l(:label_preview), 
                       { :url => { :controller => 'issues', :action => 'preview', :id => @issue },
                         :method => 'post',
                         :update => 'preview',
                         :with => "Form.serialize('issue-form')",
                         :complete => "location.href='#preview-top'"
                       }, :accesskey => accesskey(:preview) %>
<% end %>

<a name="preview-top"></a>
<div id="preview" class="wiki"></div>