Re: Lost CSS & Javascript in Django Admin

2013-03-27 Thread Tim Cook
Thank you James and Branko. Yes, it was the relevant part of the docs that, actually I had read, but didn't understand at the time. I appreciate your patience in pointing it out to me. Cheers, Tim On Mon, Mar 25, 2013 at 6:57 PM, Branko Majic wrote: > On Mon, 25 Mar 2013 18:12:44 -0300 > Tim Co

Re: Lost CSS & Javascript in Django Admin

2013-03-25 Thread Branko Majic
On Mon, 25 Mar 2013 18:12:44 -0300 Tim Cook wrote: > The Apache error.log has these types of entries: > "GET /static/admin/css/base.css HTTP/1.1" 404 > "GET /static/admin/css/dashboard.css HTTP/1.1" 404 > "GET /static/admin/js/actions.js HTTP/1.1" 404 Did you follow-through the "Serving the admi

Re: Lost CSS & Javascript in Django Admin

2013-03-25 Thread James Schneider
This is probably a STATIC_URL issue. Check to make sure it is set correctly and that you've run manage.py collectatatic and that apache, etc. is set to serve those files directly. The dev server does some funny magic behind the scenes to get these files served up. -James On Mar 25, 2013 2:12 PM, "

Lost CSS & Javascript in Django Admin

2013-03-25 Thread Tim Cook
Hi All, I have a Django app running behind Apache according to the WSGI instructions: https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/ I modified my project IAW Two Scoops of Django instructions so that I have separate settings files and different directories. (see layout bel