Skip to content

praekeltfoundation/molo.polls

Repository files navigation

Molo polls

Continuous Integration

Code Coverage

Pypi Package

A molo module that provides the ability to run polls and surveys.

Installation:

pip install molo.polls

Django setup:

INSTALLED_APPS = (
   'molo.polls',
)

In your urls.py:

urlpatterns += [
     url(r'^polls/', include('molo.polls.urls', namespace='molo.polls', app_name='molo.polls')),
]

In your main.html:

{% load poll_votings %}

{% block content %}
   {% poll_page page=language_page %}
{% endblock %}

In your section page or article page:

{% load poll_votings %}

{% block content %}
 {% has_questions self as questions %}
 {% if questions %}
   {% poll_page_in_section page=self %}
 {% endif %}
{% endblock %}

About

A molo module that provides the ability to run polls and surveys

Resources

License

Stars

Watchers

Forks

Packages

No packages published