I'm using S3 + CloudFront for static content, and the django_markdown static url's have incorrect url's in Django Admin (I'm using Grapelli interface). I use the s3-storage-redux provider for S3 access.
I suspect you are using the STATIC_URL in settings directly somewhere, while you probably need to use the staticfiles template tags. Depending on STATIC_URL will probably make it incompatible with other storage providers for Django (like S3Storage, or even the built-in manifest storage provider).
Hi,
I'm using S3 + CloudFront for static content, and the django_markdown static url's have incorrect url's in Django Admin (I'm using Grapelli interface). I use the s3-storage-redux provider for S3 access.
This is the output in admin html:
Notice the absence of "https://".
I suspect you are using the STATIC_URL in settings directly somewhere, while you probably need to use the staticfiles template tags. Depending on STATIC_URL will probably make it incompatible with other storage providers for Django (like S3Storage, or even the built-in manifest storage provider).