redapesolutions / django-typeform

Embed Typeform in your Django website

Home Page:https://django-typeform.readthedocs.io/

Repository from Github https://github.comredapesolutions/django-typeformRepository from Github https://github.comredapesolutions/django-typeform

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

About

Embed Typeform in your Django website

https://django-typeform.readthedocs.io/

License:MIT License


Languages

Language:Python 82.0%Language:HTML 9.5%Language:Makefile 8.5%