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
* django-ordered-model
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
* django-ordered-model
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.9.tar.gz
(9.5 kB
view details)
File details
Details for the file django-mp-poll-2.9.tar.gz
.
File metadata
- Download URL: django-mp-poll-2.9.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe0df2948b1317b334dec3ffa52f99abcee6c077cc29fadcb9846e1c2bcd1473 |
|
MD5 | 2e3656f3d1fd7964d7de352bde2ed5c1 |
|
BLAKE2b-256 | 58f23c125e415188ae1d3669f89aecd4ec722ba8edd0faf6271f939a2fb267cf |