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
Hello, and welcome to Django. A long time ago, the original "forms" was removed and replaced with "newforms". To keep applications working during the transition, both "forms" and "newforms" were kept side-by-side for awhile. The idea was, after the transition was complete, you could simply chan

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 > ---