Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/redapesolutions/django-typeform

Embed Typeform in your Django website
https://github.com/redapesolutions/django-typeform

django typeform

Last synced: about 1 month ago
JSON representation

Embed Typeform in your Django website

Awesome Lists containing this project

README

        

=============================
Django Typeform
=============================

.. image:: https://badge.fury.io/py/django-typeform.svg
:target: https://badge.fury.io/py/django-typeform

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

.. image:: https://codecov.io/gh/redapesolutions/django-typeform/branch/master/graph/badge.svg
:target: https://codecov.io/gh/redapesolutions/django-typeform

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`:

.. code-block:: python

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

Usage as template tag:

.. code-block:: html

{% load django_typeform %}


{% typeforms_embed 'https://xxxx.typeform.com/to/xxxxxx' 'my-typeform' '{"hideHeaders": true, "hideFooter": true}' %}

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