2006-10-22 14:47:25 +00:00
|
|
|
<% pdf=IfpdfHelper::IFPDF.new
|
|
|
|
pdf.AliasNbPages
|
2006-11-21 22:27:47 +00:00
|
|
|
pdf.footer_date = format_date(Date.today)
|
2006-10-22 14:47:25 +00:00
|
|
|
@issues.each {|i|
|
|
|
|
pdf.AddPage
|
2006-12-17 08:10:18 +00:00
|
|
|
render :partial => 'issues/pdf', :locals => { :pdf => pdf, :issue => i }
|
2006-10-22 14:47:25 +00:00
|
|
|
}
|
|
|
|
%>
|
|
|
|
|
|
|
|
<%= pdf.Output %>
|