I'm creating my first project that is a small résumé creator, I'm making people fill the form with school % , name, etc etc which is being saved to my database. But I'm not sure how can I use this data to be printed as a PDF (a résumé) or how can I make it so that a blank resume template would have these name, school, fathers name printed.
Any little help would be appreciated.
Thanks.
You will have to design the resume on a template then simply pass your data to the corresponding sections in your template.
As for generating PDF, you can easily do that by following Django’s official documentation here [https://docs.djangoproject.com/en/3.1/howto/outputting-pdf/](https://docs.djangoproject.com/en/3.1/howto/outputting-pdf/)