Re: i can't import newforms(newbie)

2010-06-08 Thread refreegrata
ok, thanks. Now I feel more relaxed. On 8 jun, 15:50, Michael wrote: > On Tue, Jun 8, 2010 at 3:46 PM, refreegrata wrote: > > hello list > > i'm a newbie with django trying to learn > > Now i have a question > > when i do > > --- > > from djang

re: i can't import newforms(newbie)

2010-06-08 Thread Steven L Smith
Steven L Smith, Web Developer Department of Information Technology Services Nazareth College of Rochester 585-389-2085 | ssmit...@naz.edu http://www.naz.edu/pub/~ssmith46 - Original Message - From: "refreegrata" To: "Django user

Re: i can't import newforms(newbie)

2010-06-08 Thread Dan Harris
Hey there, newforms was renamed to forms for the Django 1.0 release, this is the reason why the statement "from django import newforms as forms" doesn't work (because newforms does not exist anymore). Anywhere you see newforms you can probably replace with forms. What tutorials are you reading? If

Re: i can't import newforms(newbie)

2010-06-08 Thread Michael
On Tue, Jun 8, 2010 at 3:46 PM, refreegrata wrote: > hello list > i'm a newbie with django trying to learn > Now i have a question > when i do > --- > from django import newforms as forms > ---

i can't import newforms(newbie)

2010-06-08 Thread refreegrata
hello list i'm a newbie with django trying to learn Now i have a question when i do --- from django import newforms as forms django throw an exception : "Error was: cannot import name newfor