Re: Name error ,not defined problem

2015-07-19 Thread Scot Hacker
Your URL definition is calling a module that hasn't been imported. At the top of your urls.py, add: from newsletter import views In the URL definition, do: url(r'^$', views.home, name='home'), ./s > > -- You received this message because you are subscribed to the Google Groups "Django

Re: Name error ,not defined problem

2015-07-19 Thread Diego Matar
Didi you add* 'newsletter' *to your INSTALLED_APPS in settings.py? Em domingo, 19 de julho de 2015 07:16:52 UTC-3, Tara gurung escreveu: > > > > > This is my application structure with

Name error ,not defined problem

2015-07-19 Thread Tara gurung
This is my application structure with newsletter application inside *SRC* project. *Hellow am newbie to django framework and need some help to fix it* *urls.py* has this added