thebubblejungle wrote: > You might be able to fix that by using myapp/BaseOrAnotherTemplate. I > managed to get that part working! Also, if you have a setup like > /templates/myapp/ this is why it maybe can't find the file.
my directory structure is exactly that way. But it still doesnt accept it! > My urls.py file is: > > from django.conf.urls.defaults import * > > urlpatterns = patterns('ourproject.leaguemanager.views', > (r'^admin/', include('django.contrib.admin.urls.admin')), > (r'^$', 'index'), > > (r'^results/(?P<league_id>\d+)/(?P<season_id>\d+)/(?P<division_id>\d+)/$', > 'results'), #by league, season, division > (r'^media/(?P<path>.*)$', 'django.views.static.serve', > {'document_root': "J:/University of > Leeds/se12/project/ourproject/media", 'show_indexes': True}), > ) I am studying at the university of Leeds, TOO. But I am FAR LESS skilled in all this. and Django is my first Web Development experience. > I've decoupled the URLs as mentioned in the documentation. But, is that > pattern being appended to django.views.static.serve also? > > m I wish I could help you! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---