add_issue.rhtml
19 lines
| 908 B
| text/html+ruby
|
RhtmlLexer
|
r860 | <h2><%=l(:label_issue_new)%>: <%= @issue.tracker %></h2> | ||
|
r330 | |||
|
r801 | <% labelled_tabular_form_for :issue, @issue, | ||
:url => {:action => 'add_issue'}, | ||||
:html => {:multipart => true, :id => 'issue-form'} do |f| %> | ||||
|
r860 | <%= f.hidden_field :tracker_id %> | ||
<%= render :partial => 'issues/form', :locals => {:f => f} %> | ||||
|
r800 | <%= submit_tag l(:button_create) %> | ||
|
r801 | <%= 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) %> | ||||
|
r42 | <% end %> | ||
|
r801 | |||
<a name="preview-top"></a> | ||||
<div id="preview" class="wiki"></div> | ||||