Re: Is there a custom forms component of python-web?

2012-05-24 Thread Alec Taylor
On Thu, May 24, 2012 at 8:29 PM, kevon wang wrote: > what is plonk. ? > Onomatopoeia See: http://www.urbandictionary.com/define.php?term=plonk -- 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@

Re: Is there a custom forms component of python-web?

2012-05-24 Thread kevon wang
what is plonk. ? -- 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 this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visi

Re: Is there a custom forms component of python-web?

2012-05-24 Thread bruno desthuilliers
plonk. On May 24, 9:58 am, kevon wang wrote: > I want to find a plugin of django what it can custom fields in the form. > The functions include custom fields in web page and create the fields in > database. > plug's flow like these: >      1.we can define fields in web page > --> 2.create the tab

Re: Is there a custom forms component of python-web?

2012-05-24 Thread kevon wang
I want to find a plugin of django what it can custom fields in the form. The functions include custom fields in web page and create the fields in database. plug's flow like these: 1.we can define fields in web page --> 2.create the table in database(table includes all custom fields) --> 3.gene

Re: Is there a custom forms component of python-web?

2012-05-23 Thread bruno desthuilliers
On May 23, 12:27 pm, kevon wang wrote: > Is there a component as above Yes. > thanks! You're welcome. hint #1: google is your friend. Took me about 15 seconds to get the answer, so way less than the time you spent posting your question. hint #2: what you're looking for is usally named a form

Re: Is there a custom forms component of python-web?

2012-05-23 Thread kevon wang
Is there a component as above, thanks! -- 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 this group, send email to django-users+unsubscr...@googlegroups.com.

Is there a custom forms component of python-web?

2012-05-22 Thread kevon wang
I have these requires: 1,Customers can configure form's columns, the name and quantity of columns can been configured. 2,After customers configured form's columns, program automatic create the table of corresponding form. 3,After table created, customers can CURD the table. So I want to know wheth