/django-typeform

Embed Typeform in your Django website

Primary LanguagePythonMIT LicenseMIT

Django Typeform

image

image

image

A Typeform integration for Django

Documentation

The full documentation is at https://django-typeform.readthedocs.io.

Quickstart

Install Django Typeform:

pip install django-typeform

Add it to your `INSTALLED_APPS`:

INSTALLED_APPS = (
    ...
    'django_typeform.apps.DjangoTypeformConfig',
    ...
)

Add Django Typeform's static files to your template:

<script src="{% static 'django_typeform/embed.js' %}"></script>

Usage:

{% load django_typeform %}
<html>
    <body>
        <div class="my-typeform"></div>
        <script src="{% static 'django_typeform/embed.js' %}"></script>
        {% typeforms_embed 'https://xxxx.typeform.com/to/xxxxxx' '.my-typeform' '{"hideHeaders": true, "hideFooter": true}' %}
    </body>
</html>

Features

  • Embed SDK Support