1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-14 21:18:14 +00:00
2008-05-01 11:25:36 +00:00

11 lines
290 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 %>