Shell reloading

2008-03-29 Thread Jorge Sousa
ve to import everything again. Thanks Jorge Sousa --~--~-~--~~~---~--~~ 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 t

Re: Newfroms - How to get the id for a field

2008-02-18 Thread Jorge Sousa
or id. If this is not > > possible where in code does Django set the value for id? > > Try {{ field.auto_id }} > > > > > -- --- Jorge Sousa --~--~-~--~~~---~--~~ You received this message because you are subscri

Re: Best Practice for Ajax and Django. Please share your thoughts.

2008-01-29 Thread Jorge Sousa
t; > >url(r'^$', 'home'), > > >url(r'^news/$', 'list_news'), > > > ) > > > > > # AJAX views > > > urlpatterns += patterns('myapp.ajax-views', # Don't forget the > >

Re: Form data inside another Form

2007-12-28 Thread Jorge Sousa
framework!!! Thanks again for showing me the right "WAY" to do it. Maybe i'll write a mini guide about what i ended up. Its a "complex form" (to me) that maps to 4 tables. Happy new year to all. Jorge Sousa On Dec 22, 2007 4:44 AM, Malcolm Tredinnick <[EMAIL PROTECTED]&

Form data inside another Form

2007-12-21 Thread Jorge Sousa
'1' : { id: YY, }, '2': { id: ZZ , } }} and so on, so each row could be fed into a Detail0Form instances for validation The above code seem very clumsy to me, but it was the only way i was able to do it. Is there an easy way to write it down and use a List instead of