This is my second day using django so bear with me...

I've figured out how to customize templates except for the css (and
images). In 'mysite' I created an  'interface' folder to hold my
templates and I have templates set up as
mysite/interface/admin/templates and I changed settings.py as below

#

TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates".
    # Always use forward slashes, even on Windows, use absolute path.
        "/Users/Vixiom/django/mysite/interface/admin/templates/",
)

#

That's all cool my template changes show up. I also have
mysite/interface/admin/media (which contains the media files copied
from 'contrib')

How do I change settings.py (or another file maybe) to look in
mysite/interface/admin/media directory before looking for the default
files?

Do I change ADMIN_MEDIA_PREFIX = '/media/'?

I've tried some variations for ADMIN_MEDIA_PREFIX and just end up
breaking the stylesheet link.

P.S. I'm just messing around with the development server right now I'll
tackle apache and mod_python later (all the posts I found on here dealt
with 'media' on a production server)


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to