├── .do └── app.yaml ├── .github └── dependabot.yaml ├── .gitignore ├── LICENSE ├── README.md ├── frontpage ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── mysite ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── polls ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── static │ └── polls │ │ ├── images │ │ └── background.gif │ │ └── style.css ├── templates │ └── polls │ │ ├── detail.html │ │ ├── index.html │ │ └── results.html ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── static └── README.md └── templates ├── admin └── base_site.html └── index.html /.do/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/.do/app.yaml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | db.sqlite3 2 | *.pyc 3 | staticfiles/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/README.md -------------------------------------------------------------------------------- /frontpage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontpage/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/frontpage/admin.py -------------------------------------------------------------------------------- /frontpage/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/frontpage/apps.py -------------------------------------------------------------------------------- /frontpage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontpage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/frontpage/models.py -------------------------------------------------------------------------------- /frontpage/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/frontpage/tests.py -------------------------------------------------------------------------------- /frontpage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/frontpage/urls.py -------------------------------------------------------------------------------- /frontpage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/frontpage/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/mysite/asgi.py -------------------------------------------------------------------------------- /mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/mysite/settings.py -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/mysite/wsgi.py -------------------------------------------------------------------------------- /polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/admin.py -------------------------------------------------------------------------------- /polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/apps.py -------------------------------------------------------------------------------- /polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/models.py -------------------------------------------------------------------------------- /polls/static/polls/images/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/static/polls/images/background.gif -------------------------------------------------------------------------------- /polls/static/polls/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/static/polls/style.css -------------------------------------------------------------------------------- /polls/templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/templates/polls/detail.html -------------------------------------------------------------------------------- /polls/templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/templates/polls/index.html -------------------------------------------------------------------------------- /polls/templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/templates/polls/results.html -------------------------------------------------------------------------------- /polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/tests.py -------------------------------------------------------------------------------- /polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/urls.py -------------------------------------------------------------------------------- /polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/polls/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/static/README.md -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/sample-django/HEAD/templates/index.html --------------------------------------------------------------------------------