gitextract_nnisl5fi/ ├── .gitignore ├── LICENSE ├── README.md ├── accounts/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations/ │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── accounts/ │ │ ├── login.html │ │ └── register.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── pollme/ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── polls/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20231018_1318.py │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── polls/ │ │ ├── add_choice.html │ │ ├── add_poll.html │ │ ├── endpoll.html │ │ ├── poll_detail.html │ │ ├── poll_edit.html │ │ ├── poll_result.html │ │ └── polls_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt ├── seeder.py ├── static/ │ └── css/ │ └── home_style.css └── templates/ ├── base.html ├── home.html └── includes/ └── navbar.html