2024-07-19 02:29:18 +02:00
|
|
|
prawn_document do |pdf|
|
2024-07-21 02:15:06 +02:00
|
|
|
pdf.markup_options = {
|
|
|
|
|
heading1: { style: :bold, size: 14, margin_bottom: 10, margin_top: 20 }
|
|
|
|
|
}
|
|
|
|
|
pdf.text @report.name, size: 22, style: :bold, align: :center
|
2024-07-19 02:29:18 +02:00
|
|
|
@report.elements.each do |element|
|
2024-07-21 02:15:06 +02:00
|
|
|
pdf.text element.title, size: 16, style: :bold
|
2024-07-19 02:29:18 +02:00
|
|
|
pdf.text element.path
|
2024-07-21 02:15:06 +02:00
|
|
|
pdf.markup prepare_rich_text(element.description_html.to_s), inline_format: true
|
2024-07-19 02:29:18 +02:00
|
|
|
|
|
|
|
|
element.success_criteria.each do |success_criterion|
|
2024-07-21 02:15:06 +02:00
|
|
|
pdf.text success_criterion.title, size: 14, style: :bold
|
|
|
|
|
pdf.markup prepare_rich_text(success_criterion.description_html.to_s), inline_format: true
|
|
|
|
|
pdf.markup prepare_rich_text(success_criterion.comment_html.to_s), inline_format: true
|
2024-07-19 02:29:18 +02:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|