I am writing a web application using TurboGears, and in this application, users should be able to create different reports. The data required for reporting is stored in a database (MySQL). Reports should be returned either as an easy-to-print html document or to a pdf file.
I previously used jasper and iReport to create documents, but if I can run Java to create a report, I would be happy.
Ideally, I would like to specify reports in an easily readable markup language, and then just transfer the template data to some library that creates the report.
I gladly accept any tips on how I should create these reports!
source
share