git-svn-id: http://redmine.rubyforge.org/svn/trunk@226 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
288 B
Plaintext
10 lines
288 B
Plaintext
<% pdf=IfpdfHelper::IFPDF.new
|
|
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 %> |