Re: Manage static files using Jinja2

2018-12-19 Thread shiva kumar
Yes static files need a url path. But that path should be mentioned in setting.py file. That makes django, when there is use of css or js files it refers to that path On Tue 11 Dec, 2018 4:32 am I am using the documentation to learn Django. When I started creating > static files, I started to get

Re: Manage static files using Jinja2

2018-12-11 Thread Yarving Liu
The document said you need to create a static root path first, then Django will auto reverse your static file's URL. On Tue, Dec 11, 2018 at 7:03 AM wrote: > I am using the documentation to learn Django. When I started creating > static files, I started to get problems. I am using this: > http

Manage static files using Jinja2

2018-12-10 Thread miguel . yurivilca
I am using the documentation to learn Django. When I started creating static files, I started to get problems. I am using this: https://docs.djangoproject.com/en/2.1/howto/static-files/ but I think it is using Django template engine. How can I fix this problem? Does every static file needs a ur