edit.rhtml
19 lines
| 874 B
| text/html+ruby
|
RhtmlLexer
|
r800 | <h2><%=h "#{@issue.tracker.name} ##{@issue.id}" %></h2> | ||
|
r2 | |||
|
r801 | <% labelled_tabular_form_for :issue, @issue, | ||
:url => {:action => 'edit'}, | ||||
:html => {:id => 'issue-form'} do |f| %> | ||||
|
r800 | <%= render :partial => 'form', :locals => {:f => f} %> | ||
<%= f.hidden_field :lock_version %> | ||||
<%= submit_tag l(:button_save) %> | ||||
|
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) %> | ||||
|
r19 | <% end %> | ||
|
r801 | |||
<a name="preview-top"></a> | ||||
<div id="preview" class="wiki"></div> | ||||