##// END OF EJS Templates
ProjectsController#add_issue moved to IssuesController#new....
ProjectsController#add_issue moved to IssuesController#new. Tracker can now be changed/selected on the new issue form. This action can be invoked without the tracker_id parameter (the first enabled tracker will be used by default). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1080 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r799:fa094a3fe5f8
r1066:44ac1a0debc8
Show More
show.rfpdf
10 lines | 308 B | text/plain | TextLexer
<% pdf=IfpdfHelper::IFPDF.new(current_language)
pdf.SetTitle("#{@project.name} - ##{@issue.tracker.name} #{@issue.id}")
pdf.AliasNbPages
pdf.footer_date = format_date(Date.today)
pdf.AddPage
render :partial => 'issues/pdf', :locals => { :pdf => pdf, :issue => @issue }
%>
<%= pdf.Output %>