Issue and his sub-issues to HTML

Hi!
What tool can I use to render informations from Issue and his sub-issues using Java?

I heard something about Velocity template, alternative I can build step by step this HTML, but this code will be very rubbish.

Hey, you could use velocity templates for that.
It would look something like that:

	<p>$issue.callWhatEverDataYouNeed()</p>
	#if ($issue.getSubTaskObjects().size() > 0)
		#foreach( $subTask in $issue.getSubTaskObjects() )
			<p>$subTask.callWhatEverDataYouNeed()</p>
		#end
	#end
1 Like