Mark

Results 3 comments of Mark

Thank you for the answer! Docs says Django allow you to declare STATICFILES_DIRS with prefixes as a tuples: https://docs.djangoproject.com/en/4.2/ref/settings/#prefixes-optional

Well, I added media folder to static dirs, and now images are loading. But unfortunately they still .jpg 😅 ```python STATICFILES_DIRS = [ ("css", os.path.join(STATIC_ROOT, 'css/')), ("images", os.path.join(STATIC_ROOT, 'images/')), ("js",...

@mistune @IliasAarab Unfortunately no, used MyMemoryTranslator instead for quick hotfix.