Re: New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-29 Thread Mikołaj Siedlarek
Hi Carl, To be honest, I think that Django will never achieve complete separation in terms of MVC model staying this convenient tool. There are many places where Django has a simple way of doing things, even when it's not full MVC-compilant. Current Form.as_(table|ul|p) methods are examples. I

Re: New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-28 Thread Carl Meyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Mikołaj, Thanks for your work on contributing to Django! I am a bit skeptical about defining form fieldsets in Python code, as they have no effect on server-side interpretation or validation of form data, they are purely an HTML/presentational

Re: New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-28 Thread Russell Keith-Magee
2011/11/28 Mikołaj Siedlarek : > Hi Russel, > My patch obviously was not posted to be merged into trunk in it's current > state. > It is meant to be a message "i'd like to do that, seriously". Now that I see > general > community support I can perfect it. There several more

Re: New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-28 Thread Mikołaj Siedlarek
Hi Russel, My patch obviously was not posted to be merged into trunk in it's current state. It is meant to be a message "i'd like to do that, seriously". Now that I see general community support I can perfect it. There several more things I'd like to do, mainly: 1. "Dogfooding" (which is a

Re: New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-28 Thread Russell Keith-Magee
2011/11/27 Mikołaj Siedlarek : > Hi, > I've just posted a new ticket with everything the feature proposal needs - > motivation, idea and actual implementation. > https://code.djangoproject.com/ticket/17301 > > It definitely needs some discussion, so please -- ask, discuss,

Re: New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-27 Thread Kiril Vladimirov
+1 -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-developers/-/Xn1dFyUtjJsJ. To post to this group, send email to django-developers@googlegroups.com. To

Re: New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-27 Thread Daniel Swarbrick
+1 I've often wondered why fieldsets have been possible in the Django admin interface for a while now, but not possible with ModelForms. Looking forward to this. On Nov 27, 12:43 am, Mikołaj Siedlarek wrote: > Hi, > > I've just posted a new ticket with everything the feature

New feature: Defining fieldsets in form class (Ticket #17301)

2011-11-26 Thread Mikołaj Siedlarek
Hi, I've just posted a new ticket with everything the feature proposal needs - motivation, idea and actual implementation. https://code.djangoproject.com/ticket/17301 It definitely needs some discussion, so please -- ask, discuss, criticize, share some thoughts and one day, hopefully +1. :)