Django Admin Template Missing after S3 Setup -
i'm running django locally using heroku, static + media files hosted on s3. however, admin templates have gone missing. i've followed config - django template path - template_dirs
file follows:
project_path = os.path.realpath(os.path.dirname(__file__)) template_dirs = (project_path + '/templates/') template_loaders = ( 'django.template.loaders.filesystem.loader', 'django.template.loaders.app_directories.loader', )
i've noticed browser still looking admin css files on s3 but, first time setting , deploying, i'm bit lost how configure properly.
Comments
Post a Comment