Add this line to your apps "django.contrib.staticfiles" as this provides a convenience management command for gathering static files in a single directory so you can serve them easily. Set the
STATIC_ROOT
setting in the config file (I am unsure where this goes due to it being a while however it is in the file with the main configs) to the directory from which youd like to serve these files, for example:
STATIC_ROOT = "C:/path/to/website/example.com/static/"
Run the collectstatic management command:
$ python manage.py collectstatic
This will copy all files from your static folders, such as the admin page, into the static directory (example.com/static). Now upload.