Voting System Project Using Django Framework - GeeksforGeeks
Voting System Project Using Django Framework - GeeksforGeeks
▲
Pre-requisite: Knowledge of Python and basics of Django Framework.
Python should be installed in the system. Visual studio code or any code
editor to work on the application.
Creating Project
Step-1: Create an empty folder pollster_project in your directory.
cd pollster_project
cd pollster_project
step-4: and create a virtual environment in this folder using the following
command.
Step-3: A Pipfile will be created in your folder from the above step. Now
install Django in your folder using the following command.
Step-4: Now we need to establish the Django project. Run the following
command in your folder and initiate a Django project.
A New Folder with name pollster will be created. Switch to the pollster
folder using the following command.
cd pollster
Here you can start the server using the following command and check if
the application running or not using your http://127.0.0.1:8000/ in your
browser.
python manage.py runserver
Below is the folder structure after creating ”polls’ app in the project.
Create Models
Step-1: In your models.py file write the code given below to create two
tables in your database. One is ‘Question‘ and the other one is ‘Choice‘.
‘Question’ will have two fields of ‘question_text’ and a ‘pub_date’. Choice
has three fields: ‘question’, ‘choice_text’, and ‘votes’. Each Choice is
associated with a Question.
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def __str__(self):
return self.question_text
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __str__(self):
return self.choice_text
INSTALLED_APPS = [
'polls.apps.PollsConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
Step-3: We have made changes in our database and created some tables
but in order to reflect these changes we need to create migration here and
then Django application will stores changes to our models. Run the
following command given below to create migrations.
Now it will prompt an email address which again we need to enter here.
The final step is to enter the password. We need to enter the password
twice, the second time as a confirmation of the first.
Password: ******
Password (again): ******
Superuser created successfully.
Now we can run the server using the same command python manage.py
runserver and we can check our admin panel browsing the URL
http://127.0.0.1:8000/admin .
Step-2: In the admin.py file we will write the code given below to map each
question with choices to select. Also, we will write the code to change the
site header, site title, and index_title. Once this is done we can add
questions and choices for the question from the admin panel.
class ChoiceInLine(admin.TabularInline):
model = Choice
extra = 3
class QuestionAdmin(admin.ModelAdmin):
fieldsets = [(None, {'fields': ['question_text']}), ('Date
Information', {
'fields': ['pub_date'], 'classes': ['collapse']}), ]
inlines = [ChoiceInLine]
admin.site.register(Question, QuestionAdmin)
Note: We can test the application here by adding some questions and
choices for those questions.
Create Views
Now we will create the view of our application that will fetch the data from
our database and will render the data in the ‘template‘ (we will create
‘template’ folder and the files inside this folder in the next section) of our
application to display it to the user.
Step-1 Open views.py file and write down the code given below.
Step-2: Create a file urls.py inside the pollster->polls folder to define the
routing for all the methods we have implemented in views.py file (don’t
get confused with the file inside the pollster->pollster->urls.py file). Below
is the code of urls.py file…
from django.urls import path
from . import views
app_name = 'polls'
urlpatterns = [
path('', views.index, name='index'),
path('<int:question_id>/', views.detail, name='detail'),
path('<int:question_id>/results/', views.results,
name='results'),
path('<int:question_id>/vote/', views.vote, name='vote'),
]
Create Templates
Step-1: Follow the steps given below to create the front layout of the
page.
The folder structure will look like the image given below (we have
highlighted the files which we have created in ‘create views i.e urls.py’ and
‘create template’ section)…
Step-2: By default Django will search the ‘template’ inside the ‘polls’ app
but we have created a global ‘template’ folder which is outside the polls
app. So in order to make it work, we need to define the ‘template’ folder
path inside the settings.py file. Open settings.py file and add the code
given below in the list ‘TEMPLATES’. In order to make the given code work
add “import os” in settings.py.
TEMPLATES = [
{
# make changes in DIRS[].
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
Step-3: Open index.html file and write the code given below. This file will
display the list of questions which are stored in our database. Also, two
buttons will be displayed to the user. One for the voting (we will create a
detail.html file for voting) and the other one is to check the results (we will
create results.html file for results).
{% extends 'base.html' % }
{% block content % }
<h1 class = " text-center mb-3" > Poll Questions < /h1 >
{% if latest_question_list % }
{% for question in latest_question_list % }
<div class = " card-mb-3" >
<div class = " card-body" >
<p class = " lead" > {{question.question_text}} < /p >
<a href = "{% url 'polls:detail' question.id %}" class = " btn
btn-primary btn-sm" > Vote Now < /a >
<a href = "{% url 'polls:results' question.id %}" class =
" btn btn-secondary btn-sm" > Results < /a >
</div >
</div >
{ % endfor % }
{ % else % }
<p > No polls available < /p>
{ % endif % }
{ % endblock % }
Step-4: Open detail.html file and write the code given below. This file will
be responsible for voting on specific questions. Whatever question a user
will select for voting from the list of the question (index.html file), that
specific question and the choices for the question will be displayed on
this page. A user will be allowed to select one choice and give voting by
clicking on the vote button.
{ % extends 'base.html' % }
{ % block content % }
<a class = " btn btn-secondary btn-sm mb-3" href = "{% url
'polls:index' %}" > Back To Polls < /a >
<h1 class = " text-center mb-3" > {{question.question_text}} < /h1 >
{ % if error_message % }
<p class = " alert alert-danger" >
<strong > {{error_message}} < /strong >
</p >
{ % endif % }
<form action = "{% url 'polls:vote' question.id %}" method = "post" >
{ % csrf_token % }
{ % for choice in question.choice_set.all % }
<div class = " form-check" >
<input type = "radio" name = "choice" class = " form-check-input"
id = "choice{{ forloop.counter }}"
value = "{{ choice.id }}" / >
<label for = "choice{{ forloop.counter }}" >
{{choice.choice_text}} < /label >
</div >
{ % endfor % }
<input type = "submit" value = "Vote" class = " btn btn-success
btn-lg btn-block mt-4" / >
</form >
{ % endblock % }
Step-5: Open results.html file and write the code given below. This file will
display the result of total votes on a specific question whatever question
the user will select (from the index.html file) to check the result.
{ % extends 'base.html' % }
{ % block content % }
<h1 class = " mb-5 text-center" > {{question.question_text}} < /h1 >
<a class = " btn btn-secondary" href = "{% url 'polls:index' %}" >
Back To Polls < /a >
<a class = " btn btn-dark" href = "{% url 'polls:detail' question.id
%}" > Vote again?< /a >
{ % endblock % }
Step-6: Let’s create the navigation bar for our application. Create a folder
‘partials‘ inside the folder ‘templates’ and then create a file ‘_navbar.html‘
inside the ‘partial’ folder. File structure will be templates->partials-
>_navbar.html. Write the code given below in this file.
Step-7: We haven’t included the head and body tag in every single HTML
file we have created till now. We can write these codes in just one single
file base.html and we can give the layout to our page. We will also bring
our navigation bar(_navbar.html file) on this page. So open base.html file
inside the ‘template’ folder and write down the code given below.
<head >
<link rel = "stylesheet" href =
"https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min
.css"
integrity = "sha384-
Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin = "anonymous" >
<title > Pollster { % block title % }{ % endblock % } < /title >
</head >
<body >
<!--NavBar-->
{ % include 'partials/_navbar.html'%}
<div class = " container" >
<div class = " row" >
<div class = ". col-md-6 m-auto" >
{ % block content % }{ % endblock%}
</div >
</div >
</div >
</body >
</html >
Step-1 Switch to the top-level pollster folder and run the command given
below to create an app ‘pages‘.
Below is the folder structure once the ‘pages’ app will be created.
def index(request):
return render(request, 'pages / index.html')
Step-3 Create urls.py file inside the ‘pages’ folder i.e. pages->urls.py. Write
the code given below to define the routing of pages->index.html file
(check step-1).
urlpatterns = [
path('', views.index, name='index'),
]
Step-4 Create a folder ‘pages‘ inside ‘template’ folder. Now inside ‘pages’
folder create a file index.html. Write down the code given below to display
the landing page to the users.
{% extends 'base.html' % }
{% block content % }
We have created two apps in our application ‘polls‘ and ‘pages‘. We need
to define the routing of these two apps inside the main urls.py file which is
pollster->pollster->urls.py file. So open the main urls.py file inside the
pollster folder and write down the code given below to define the routing
of these two apps(‘polls’ and ‘pages’).
urlpatterns = [
path('', include('pages.urls')),
path('polls/', include('polls.urls')),
path('admin/', admin.site.urls),
]
Admin Frontend
Step-1 Run the server using the command python manage.py runserver
and browse the URL http://127.0.0.1:8000/admin/. Now enter the
username and password to login into the system.
User Frontend
Step-1: Browse the URL http://127.0.0.1:8000/ and you will see the
landing page of the application. Click on the “View Available Polls”
Step-2: You will see list of questions with two options ‘Vote Now’ and
‘Results’. From here you need to select one question and click on the ‘Vote
Now’ button.
Step-3: Once this is done select any one choice and click on ‘Vote’ button.
You can also go to the previous menu using the ‘Back to Polls’ button on
the top.
You will see the total voting result for the question you have selected.
You can also check the total votes for any question using the option
‘Results’ from the ‘Poll Questions’ page.
https://github.com/anuupadhyay/pollster-django-crash
Are you ready to elevate your web development skills from foundational
knowledge to advanced expertise? Explore our Mastering Django
Framework - Beginner to Advanced Course on GeeksforGeeks, designed
for aspiring developers and experienced programmers. This
comprehensive course covers everything you need to know about
Django, from the basics to advanced features. Gain practical experience
through hands-on projects and real-world applications, mastering
essential Django principles and techniques. Whether you’re just starting
or looking to refine your skills, this course will empower you to build
sophisticated web applications efficiently. Ready to enhance your web
development journey? Enroll now and unlock your potential with Django!
Comment More info Next Article
Determine The Face Tilt Using
Placement Training Program
OpenCV - Python
Similar Reads
Registered Address:
K 061, Tower K, Gulshan Vivante
Apartment, Sector 137, Noida,
Gautam Buddh Nagar, Uttar Pradesh,
201305
Advertise with us
Company Explore
About Us Job-A-Thon Hiring Challenge
Legal Hack-A-Thon
Privacy Policy GfG Weekly Contest
Careers Offline Classes (Delhi/NCR)
In Media DSA in JAVA/C++
Contact Us Master System Design
GFG Corporate Solution Master CP
Placement Training Program GeeksforGeeks Videos
Geeks Community
Languages DSA
Python Data Structures
Java Algorithms
C++ DSA for Beginners
PHP Basic DSA Problems
GoLang DSA Roadmap
SQL DSA Interview Questions
R Language Competitive Programming
Android Tutorial
DSA/Placements Development/Testing
DSA - Self Paced Course JavaScript Full Course
DSA in JavaScript - Self Paced Course React JS Course
DSA in Python - Self Paced React Native Course
C Programming Course Online - Learn C with Data Django Web Development Course
Structures Complete Bootstrap Course
Complete Interview Preparation Full Stack Development - [LIVE]
Master Competitive Programming JAVA Backend Development - [LIVE]
Core CS Subject for Interview Preparation Complete Software Testing Course [LIVE]
Mastering System Design: LLD to HLD Android Mastery with Kotlin [LIVE]
Tech Interview 101 - From DSA to System Design [LIVE]
DSA to Development [HYBRID]
Placement Preparation Crash Course [LIVE]
Clouds/Devops GATE
DevOps Engineering GATE CS & IT Test Series - 2025
AWS Solutions Architect Certification GATE DA Test Series 2025
Salesforce Certified Administrator Course GATE CS & IT Course - 2025
GATE DA Course 2025
GATE Rank Predictor