Re: no style in admin pages; learning from djangobook.com

2013-07-02 Thread Jared Nielsen
It was the 'django.contrib.staticfiles' in INSTALLED_APPS. Looks as it should now. Thanks for the help. On Monday, July 1, 2013 9:58:52 AM UTC-7, Vineet Naik wrote: > > Adding to Jacky Tian's reply, if you are running the django dev > server, check if DEBUG is set to True and `django.contrib.st

Re: no style in admin pages; learning from djangobook.com

2013-07-01 Thread Vineet Naik
Adding to Jacky Tian's reply, if you are running the django dev server, check if DEBUG is set to True and `django.contrib.staticfiles` is added to INSTALLED_APPS in settings.py See docs about these settings here - https://docs.djangoproject.com/en/dev/howto/static-files/#configuring-static-files

Re: no style in admin pages; learning from djangobook.com

2013-07-01 Thread Jacky Tian
Are you using the development server with `python manage.py runserver`? If you are, the static files for the admin should just work. If they don't, you may have messed up something in your settings.py. Otherwise, if you're serving your project from a webserver like Apache or nginx, run `python

Re: no style in admin pages; learning from djangobook.com

2013-07-01 Thread gilberto dos santos alves
please post details of what you do and what you expected. details django version, os and version. etc. Em segunda-feira, 1 de julho de 2013 10h05min31s UTC-3, Jared Nielsen escreveu: > > Hi all, > Just getting started with Django. > I'm following the projects on djangobook.com. > After activatin

no style in admin pages; learning from djangobook.com

2013-07-01 Thread Jared Nielsen
Hi all, Just getting started with Django. I'm following the projects on djangobook.com. After activating the admin interface I don't have .css styling. I also have no idea how to enable it. Any help is greatly appreciated. Thanks! -- You received this message because you are subscribed to the Go