Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Put whatever css or javascript you want to add to the file.

Do not use the $ sign (or if so, encode it). However, if you do use the $ sign it will most likely work anyway.

 

Code Block
languagexml
linenumberstrue
## Obtain the template manager
#set($templateManager = $timeTrackingComponentManager.getTemplateManager())
#set($templateCss = $ $templateManager.getTemplateByKey("mycsstemplate"))
 
<style type="text/css">
	$!templateCss.getVelocityFileObject().getContentAsString()
</style>
 

...