92 lines
3.6 KiB
Markdown
92 lines
3.6 KiB
Markdown
# Django-Poll-App
|
|
|
|
Django poll app is a full featured polling app. You have to register in this app to show the polls and to vote. If you already voted you can not vote again. Only the owner of a poll can add poll , edit poll, update poll, delete poll , add choice, update choice, delete choice and end a poll. If a poll is ended it can not be voted. Ended poll only shows user the final result of the poll. There is a search option for polls. Also user can filter polls by name, publish date, and by number of voted. Pagination will work even after applying filter.
|
|
|
|
<h1>Getting Started</h1>
|
|
<p>These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.</p>
|
|
|
|
<h2>Prerequisites</h2>
|
|
<code>python== 3.5 or up and django==2.0 or up</code>
|
|
|
|
<h2>Installing</h2>
|
|
<pre>open terminal and type</pre>
|
|
<code>git clone https://github.com/devmahmud/Django-poll-app.git</code><br><br>
|
|
|
|
<h4>or simply download using the url below</h4>
|
|
<code>https://github.com/devmahmud/Django-poll-app.git</code><br>
|
|
|
|
<h2>To migrate the database open terminal in project directory and type</h2>
|
|
<code>python manage.py makemigrations</code><br>
|
|
<code>python manage.py migrate</code>
|
|
|
|
<h2>To use admin panel you need to create superuser using this command </h2>
|
|
<code>python manage.py createsuperuser</code>
|
|
|
|
<h2>To Create some dummy text data for your app follow the step below:</h2>
|
|
<code>pip install faker</code>
|
|
<code>python manage.py shell</code>
|
|
<code>import seeder</code>
|
|
<code>seeder.seed_all(30)</code>
|
|
<p>Here 30 is a number of entry. You can use it as your own</p>
|
|
|
|
<h2> To run the program in local server use the following command </h2>
|
|
<code>python manage.py runserver</code>
|
|
|
|
<p>Then go to http://127.0.0.1:8000 in your browser</p>
|
|
|
|
<h2>Project snapshot</h2>
|
|
<h3>Home page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51409444-0e40a600-1b8c-11e9-9ab0-27d759db8973.jpg" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Login Page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51409509-36c8a000-1b8c-11e9-845a-65b49262aa53.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Registration Page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51409562-5cee4000-1b8c-11e9-82f6-1aa2df159528.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Poll List Page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51409728-d423d400-1b8c-11e9-8903-4c08ba64512e.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Poll Add Page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51409796-fe759180-1b8c-11e9-941b-c1202956cca4.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Polling page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51409843-1e0cba00-1b8d-11e9-9109-cceb79a6a623.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Poll Result Page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51409932-60ce9200-1b8d-11e9-9c83-c59ba498ca8b.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Poll Edit Page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51410008-92dff400-1b8d-11e9-8172-c228e4b60e28.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h3>Choice Update Delete Page</h3>
|
|
<div align="center">
|
|
<img src="https://user-images.githubusercontent.com/19981097/51410442-dc7d0e80-1b8e-11e9-8f8e-18e6d7bb70fb.png" width="100%"</img>
|
|
</div>
|
|
|
|
<h2>Author</h2>
|
|
<blockquote>
|
|
Mahmudul alam<br>
|
|
Email: expelmahmud@gmail.com
|
|
</blockquote>
|
|
|
|
<div align="center">
|
|
<h3>========Thank You !!!=========</h3>
|
|
</div>
|