How to generate a constent certificate in django restframework?

"How to manage consent certificates for organ donation in a DRF project?"

Body: I'm building a feature where users can mark their willingness to donate organs and generate a consent certificate. The user should be able to upload the signed certificate after reviewing it.

Here's the flow I need:

Users mark their willingness to donate organs during registration or profile update. A consent certificate is generated and made available to the user. The user must download the certificate, sign it, and re-upload it.

i need to know how to generate certificates

Back to Top