Skip to main content

Django poll app

Project description

# MP-Poll

Django poll app.

### Installation

Install with pip:

```
$ pip install django-mp-poll
```

Add poll to settings.py:

```
INSTALLED_APPS = [
...
'poll',
]
```

Add poll to urls.py:
```
urlpatterns = [
...
url(r'^poll/', include('poll.urls', namespace='poll')),
]
```

Add static components:
```
poll/poll.css
poll/poll.js
```

Sync DB:

```
$ python manage.py migrate
$ python manage.py sync_translation_fields
```

## Template
```
{% load poll %}

<div>
{% render_latest_poll %}
</div>
```

### Requirements

App require this packages:

* django-modeltranslation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-mp-poll-2.0.tar.gz (9.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page