Re: Templates not found

2012-12-18 Thread Sithembewena Lloyd Dube
Thank you Sergiy and @donarb - my urls.py file was wrng as described by @donarb. On Wed, Dec 12, 2012 at 6:38 PM, donarb wrote: > When you used the shell, you imported 'tracks.views' but in your urls.py, > you have musicsite.views.home. The two don't match. > > > On Wednesday, December 12, 2012

Re: Templates not found

2012-12-12 Thread donarb
When you used the shell, you imported 'tracks.views' but in your urls.py, you have musicsite.views.home. The two don't match. On Wednesday, December 12, 2012 6:11:54 AM UTC-8, Lloyd Dube wrote: > > urls.py: > > urlpatterns = patterns('', > # Examples: > url(r'^$', 'musicsite.views.home',

Re: Templates not found

2012-12-12 Thread Sergiy Khohlov
could you please repeat your not view error ? Look like urls,oy has no access to views.py Many thanks, Serge +380 636150445 skype: skhohlov 2012/12/12 Sithembewena Lloyd Dube : > urls.py: > > urlpatterns = patterns('', > # Examples: > url(r'^$', 'musicsite.views.home', name='home'),

Re: Templates not found

2012-12-11 Thread Sergiy Khohlov
please paste your urls.py 2012/12/11 Sithembewena Lloyd Dube : > Hi Segiy, > > Thanks for the response. "myproject" is only an alias I used while posting > the code on here, in the project code it is actually "tracks". > > > On Tue, Dec 11, 2012 at 1:31 PM, Sergiy Khohlov wrote: >> >> take a loo

Re: Templates not found

2012-12-11 Thread Sergiy Khohlov
take a look you have error related to myproject.view.home but importing track.view.home 2012/12/11 Sithembewena Lloyd Dube : > > > On Tue, Dec 11, 2012 at 4:36 AM, Sithembewena Lloyd Dube > wrote: >> >> Hi all, >> >> I have a Django project running Django 1.4.1. (just upgraded). My >> TEM