##// END OF EJS Templates
Fixed: CSV constant warning...
Fixed: CSV constant warning git-svn-id: http://redmine.rubyforge.org/svn/trunk@895 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r801:5259dec0611a
r882:362364fd6f21
Show More
edit.rhtml
19 lines | 874 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <h2><%=h "#{@issue.tracker.name} ##{@issue.id}" %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Added preview on add/edit issue form....
r801 <% labelled_tabular_form_for :issue, @issue,
:url => {:action => 'edit'},
:html => {:id => 'issue-form'} do |f| %>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <%= render :partial => 'form', :locals => {:f => f} %>
<%= f.hidden_field :lock_version %>
<%= submit_tag l(:button_save) %>
Jean-Philippe Lang
Added preview on add/edit issue form....
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) %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <% end %>
Jean-Philippe Lang
Added preview on add/edit issue form....
r801
<a name="preview-top"></a>
<div id="preview" class="wiki"></div>