Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Customizing the Django Admin Customizing the Detail View Finishing the Markdown Preview

Kayla Johnson
Kayla Johnson
1,798 Points

How to pull from the app directory, not the main directory

I have an app, locations, where I am editing the admin.py. I want to add a js and a css file located in the static directory of my app.

I use:

class Media:
    js = ('js/main.js',)
    css = {
        'all': ('css/styles.css',)
    }

and it's trying to pull from the static directory in the overall project directory. I try changing the path to something like 'locations/static/js/main.js' and it is a 404.

1 Answer

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

It'll look in the app directory first and fall back to the project-level directory second.

By default, assuming an app named locations, Django would look for <project>/locations/static/locations/css/styles.css before falling back to whatever you had set up for STATICFILES_DIRS.