At present, it's a PDF with a dashboard that spawns forms based on templates in the PDF as needed. The web app would be html forms. The user is a private investigator. Through the course of an investigation (a "case"), he adds and completes various forms as needed. There's a main form in the dashboard to enter names and locations that will be used in multiple forms (they get added to drop down menus). So, the web app will have these forms available -- user will log in, create a case (the case number gets stored in the database), and, whenever user completes a form (a new form for each "investigative action" such as surveillance, digging through trash, social media research, etc.) it will be attached to a case number. When the investigation is complete, the user will generate a report that combines all of these and ... I'd like it to be a well-formatted, pretty PDF. I don't want to just print a web page to a PDF because that's ugly. I've seen web sites that generate beautiful PDF documents. I could make it so the user just downloads the form data and imports it into the current (but enhanced version of) PDF but I'd love to save them that step. Also, for "actions" that take up more room than the text field on a page, they have to manually add another page ... I don't know how to handle the overflow in the current PDF, let alone if it is all generated dynamically via web app.
... View more