44ac1a0deb
Tracker can now be changed/selected on the new issue form. This action can be invoked without the tracker_id parameter (the first enabled tracker will be used by default). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1080 e93f8b46-1217-0410-a6f0-8f06a7374b81
18 lines
807 B
Plaintext
18 lines
807 B
Plaintext
<h2><%=l(:label_issue_new)%>: <%= @issue.tracker %></h2>
|
|
|
|
<% labelled_tabular_form_for :issue, @issue,
|
|
:html => {:multipart => true, :id => 'issue-form'} do |f| %>
|
|
<%= render :partial => 'issues/form', :locals => {:f => f} %>
|
|
<%= 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>
|