A Typeform integration for Django
The full documentation is at https://django-typeform.readthedocs.io.
Install Django Typeform:
pip install django-typeform
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_typeform.apps.DjangoTypeformConfig',
...
)
Usage as template tag:
{% load django_typeform %}
<html>
<body>
{% typeforms_embed 'https://xxxx.typeform.com/to/xxxxxx' 'my-typeform' '{"hideHeaders": true, "hideFooter": true}' %}
</body>
</html>
- Embed SDK Support
- Results API support
- TypeformMixin to use Django forms to process typeform results
- TypeformView to transparently integrate typeforms into the Django framework