# adding data to PDF

**URL:** https://forum.djangoproject.com/t/adding-data-to-pdf/8100
**Category:** Using Django
**Created:** [May 27, 2021, 4:04pm UTC](https://forum.djangoproject.com/t/adding-data-to-pdf/8100 "2021-05-27T16:04:08Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Ahmet-HACHALIL](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ahmet-hachalil/32/4456_2.png) [@Ahmet-HACHALIL](https://forum.djangoproject.com/u/Ahmet-HACHALIL)
#### Post date: [May 27, 2021, 4:04pm UTC](https://forum.djangoproject.com/t/adding-data-to-pdf/8100/1 "2021-05-27T16:04:08Z")

</div>

I am a beginner and I am working on a project in Django  
I want the user to be able to enter the information of another user of the existing ready database after that want those data to be shown on a PDF file which I have already done because I am working on-site that make an agency

What should I do

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [May 27, 2021, 4:14pm UTC](https://forum.djangoproject.com/t/adding-data-to-pdf/8100/2 "2021-05-27T16:14:15Z")

</div>

Can you be more specific as to what you’re looking for information on? What exactly is it that you need help doing?

---

<div class="post-metadata">

### Author: ![Ahmet-HACHALIL](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ahmet-hachalil/32/4456_2.png) [@Ahmet-HACHALIL](https://forum.djangoproject.com/u/Ahmet-HACHALIL)
#### Post date: [May 27, 2021, 8:43pm UTC](https://forum.djangoproject.com/t/adding-data-to-pdf/8100/3 "2021-05-27T20:43:29Z")

</div>

for example I want a user to enter the name and surname and the ID and maybe the email of another user which these entered data will be shown on the PDF file

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [May 27, 2021, 9:55pm UTC](https://forum.djangoproject.com/t/adding-data-to-pdf/8100/4 "2021-05-27T21:55:07Z")

</div>

So it sounds like there are three separate steps here:

- Display a form for a person to enter information (name, surname, ID, email)
- Build a PDF with the supplied data
- Deliver the PDF to the user

How much help do you need with each of these steps? How much work with Django have you done so far? Do you have any code working for any parts of this?

---

<div class="post-metadata">

### Author: ![Ahmet-HACHALIL](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ahmet-hachalil/32/4456_2.png) [@Ahmet-HACHALIL](https://forum.djangoproject.com/u/Ahmet-HACHALIL)
#### Post date: [May 28, 2021, 6:07pm UTC](https://forum.djangoproject.com/t/adding-data-to-pdf/8100/5 "2021-05-28T18:07:41Z")

</div>

Yes I can display a form for a person to enter information but I did not yet and  
I build a PDF but without supplied data
