##// END OF EJS Templates
Fixed: <<me>> doesn't appear in the drop down filters on a project issue list....
Fixed: <<me>> doesn't appear in the drop down filters on a project issue list. git-svn-id: http://redmine.rubyforge.org/svn/trunk@885 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r860:0af6f347580d
r872:040cfa6ae249
Show More
add_issue.rhtml
19 lines | 908 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Added the hability to copy an issue....
r860 <h2><%=l(:label_issue_new)%>: <%= @issue.tracker %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Added preview on add/edit issue form....
r801 <% labelled_tabular_form_for :issue, @issue,
:url => {:action => 'add_issue'},
:html => {:multipart => true, :id => 'issue-form'} do |f| %>
Jean-Philippe Lang
Added the hability to copy an issue....
r860 <%= f.hidden_field :tracker_id %>
<%= render :partial => 'issues/form', :locals => {:f => f} %>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <%= submit_tag l(:button_create) %>
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
* new report: project activity...
r42 <% end %>
Jean-Philippe Lang
Added preview on add/edit issue form....
r801
<a name="preview-top"></a>
<div id="preview" class="wiki"></div>