2007-10-06 12:08:29 +04:00
|
|
|
<h2><%=h "#{@issue.tracker.name} ##{@issue.id}" %></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2007-10-06 12:54:05 +04:00
|
|
|
<% labelled_tabular_form_for :issue, @issue,
|
|
|
|
:url => {:action => 'edit'},
|
|
|
|
:html => {:id => 'issue-form'} do |f| %>
|
2007-10-06 12:08:29 +04:00
|
|
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
|
|
|
<%= f.hidden_field :lock_version %>
|
|
|
|
<%= submit_tag l(:button_save) %>
|
2007-10-06 12:54:05 +04:00
|
|
|
<%= 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) %>
|
2006-09-02 17:33:23 +04:00
|
|
|
<% end %>
|
2007-10-06 12:54:05 +04:00
|
|
|
|
|
|
|
<a name="preview-top"></a>
|
|
|
|
<div id="preview" class="wiki"></div>
|