Re: tutorial p.6 problem: style.css isn't loaded

2017-12-27 Thread Jason
Correct. Django's dev server has file watchers looking at the files currently in the project when its started, but creating new files doesn't add them to said file watchers. Only solution is to restart the dev server process. -- You received this message because you are subscribed to the Goo

Re: tutorial p.6 problem: style.css isn't loaded

2017-12-27 Thread bowei xu
Same error happens to me, Restart mysite with `python manage.py runserver` fix it. It may because new created files not auto detected by django. Best, On Wednesday, February 5, 2014 at 9:45:20 AM UTC-8, Janek Warchoł wrote: > > Hello, > > i'm following Django's tutorial (very nice, btw) and st

Re: tutorial p.6 problem: style.css isn't loaded

2014-02-06 Thread Janek Warchoł
Hi, W dniu czwartek, 6 lutego 2014 04:48:42 UTC+1 użytkownik Daniel Sears napisał: > > templates/admin isn't necessary. Instead you should extend both TEMPLATE_DIRS > and STATICFILES_DIRS to include the templates and static files for the > admin package > Well, templates/admin/base_site.html w

Re: tutorial p.6 problem: style.css isn't loaded

2014-02-05 Thread Daniel Sears
templates/admin isn't necessary. Instead you should extend both TEMPLATE_DIRS and STATICFILES_DIRS to include the templates and static files for the admin package: TEMPLATE_DIRS = ( > os.path.join(BASE_DIR, 'templates'), > ' > /opt/python-venv/lib/python2.7/site-packages/django/contrib/adm