How to set language switcher links of django?

2012-08-23 Thread kevon wang
Every language show its own language links in one page, such as the Language switcher links of FaceBook and Google. Language switcher links like this : - English (US) - Español - Português (Brasil) -

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,

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

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