Skip to content

redapesolutions/django-typeform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5a922c3 · Aug 12, 2019

History

20 Commits
Oct 5, 2017
Jul 23, 2019
Jul 23, 2019
Jul 18, 2019
Jul 23, 2019
Oct 5, 2017
Oct 5, 2017
Oct 5, 2017
Jul 18, 2019
Jul 17, 2019
Oct 5, 2017
Jul 17, 2019
Oct 5, 2017
Oct 5, 2017
Oct 5, 2017
Jul 17, 2019
Oct 5, 2017
Jul 23, 2019
Jul 23, 2019
Jul 23, 2019
Oct 5, 2017
Aug 12, 2019
Jul 17, 2019
Jul 18, 2019

Repository files navigation

Django Typeform

https://travis-ci.org/redapesolutions/django-typeform.svg?branch=master

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',
    ...
)

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>

Features

  • Embed SDK Support
  • Results API support
  • TypeformMixin to use Django forms to process typeform results
  • TypeformView to transparently integrate typeforms into the Django framework