Re: name conflicts in static files

2011-10-17 Thread creecode
Just a general tip for folks. Always namespace your template and static files to avoid problems. Toodle-loo.. creecode -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

Re: name conflicts in static files

2011-10-17 Thread SmileyChris
The first app in INSTALLED_APPS wins, just like how name conflicts with templates work. You can use the following command to check what static file gets picked: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#findstatic -- You received this message because you are subscribed to

name conflicts in static files

2011-10-17 Thread dmitry b
Hi, With the new way of handling static files in Django 1.3 what would happen if two applications have identically named static files? E.g.: |___ app1 | | static | |_ styles.css |___ app2 | static |_ styles.css