##// END OF EJS Templates
pdf: move note number to the head of line for single issue's PDF (#9720)...
Toshi MARUYAMA -
r7979:62fb6e0f4b6a
parent child
Show More
@@ -459,8 +459,9 module Redmine
459 indice = indice + 1
459 indice = indice + 1
460 pdf.SetFontStyle('B',8)
460 pdf.SetFontStyle('B',8)
461 pdf.RDMCell(190,5,
461 pdf.RDMCell(190,5,
462 format_time(journal.created_on) + " - " +
462 "#" + indice.to_s +
463 journal.user.name + " #" + indice.to_s )
463 " - " + format_time(journal.created_on) +
464 " - " + journal.user.name)
464 pdf.Ln
465 pdf.Ln
465 pdf.SetFontStyle('I',8)
466 pdf.SetFontStyle('I',8)
466 for detail in journal.details
467 for detail in journal.details
General Comments 0
You need to be logged in to leave comments. Login now