A short description of your package
Project description
===== pollstats
Pollstats is a Django app which display the entire number of Voters, calculates the percentage of voters who took part in the online poll. This library is exclusively designed for a college project and may not have all the dynamic features.
Quick start
-
Add "pollstats.apps.PollstatsConfig" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [ ... 'pollstats.apps.PollstatsConfig', ]
-
Include the polls URLconf in your project urls.py like this:: path('pollstats/',include("pollstats.urls")),
-
This library uses Django's default User Object and the data in it is accessed by using from django.contrib.auth.models import User
-
This library strictly uses the following models to calculate the data:
class Events(models.Model): event_name = models.CharField(max_length=200) event_code = models.CharField(max_length=20) referal_code = models.CharField(max_length=20) hosted_by = models.ForeignKey(User, default=1, on_delete=models.CASCADE) event_description = models.TextField() event_status = models.IntegerField(default=0) starting_date = models.DateField(default=None) ending_date = models.DateField(default=None)
class Options(models.Model): option_name = models.CharField(max_length=100) count = models.IntegerField(default=0) event_code = models.CharField(max_length=200)
class Transactions(models.Model): voter = models.ForeignKey(User, default=1, on_delete=models.CASCADE) voting_time = models.DateTimeField(auto_now_add=True) option_name = models.CharField(max_length=150) event_name = models.CharField(max_length=150)
event_code = models.CharField(max_length=70) referal_code = models.CharField(max_length=70) -
Django admin can be used to insert the data in to Events table and also to insert initial data in to Options table with count as 0
-
Then the count should be updated when a user votes/unvotes, the data in Transactions table must be inserted and deleted during the vote/unvote process
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
Built Distribution
File details
Details for the file pollstats-0.4.tar.gz
.
File metadata
- Download URL: pollstats-0.4.tar.gz
- Upload date:
- Size: 5.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01f6f8aeb9d7c1157480013cbf1cac407813de74eb5b2f7b1a72e9c9944e9188 |
|
MD5 | 954643025a0eff1c6532ba6b41ddb3e4 |
|
BLAKE2b-256 | b4e105a3da34f3724ddef737eb38bbd4b80fe0c4ad2e91595d045d62529de3dd |
File details
Details for the file pollstats-0.4-py3-none-any.whl
.
File metadata
- Download URL: pollstats-0.4-py3-none-any.whl
- Upload date:
- Size: 5.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a84eee4c7997643e2efe0d7af66aa957f01f2bd9e8477d6df0e2aa2d53795c49 |
|
MD5 | 488803ef45828e4ff2ec5865fd06f661 |
|
BLAKE2b-256 | 7c51cecbea9ef65fe40e4b56c6152caa0dc4a09467febd60968211325fdaf9c1 |