├── Dockerfile ├── LICENSE ├── README.md ├── db.sql ├── mysite └── urls.py └── polls ├── urls.py └── views.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifars/davdts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifars/davdts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifars/davdts/HEAD/README.md -------------------------------------------------------------------------------- /db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifars/davdts/HEAD/db.sql -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifars/davdts/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifars/davdts/HEAD/polls/urls.py -------------------------------------------------------------------------------- /polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lifars/davdts/HEAD/polls/views.py --------------------------------------------------------------------------------