I realize this has been asked (hyperbole alert) a MILLION TIMES, but I just can't see to get the admin css to work. Either the default or the installed django_admin_bootstrapped admin display.
I've run collectstatic and I see the css, etc file under the absolute path of:
/home/username/.virtualenvs/django19/tnr/static
Directory structure for collectstatic files:
(django19) 10:31 ~/.virtualenvs/django19/tnr/static $ ls
admin
(django19) 10:31 ~/.virtualenvs/django19/tnr/static $ ls admin/
admin bootstrap bootstrap-rtl css img js
(django19) 10:31 ~/.virtualenvs/django19/tnr/static $
settings.py for installed apps
INSTALLED_APPS = [ 'django_admin_bootstrapped', 'django.contrib.admin', . . .
settings.py for static files
STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'static')
Advice on what I'm doing wrong?
Much thanks.