Hi, SQL is created for models, not for forms. Maybe you should try following the tutorial first (it's near the top of the Django documentation page), and then move to other documentation for the specifics.
- Paulo On Wed, Aug 4, 2010 at 9:19 AM, Jagdeep Singh Malhi <singh.malh...@gmail.com > wrote: > i follow these documentation for create form > > http://docs.djangoproject.com/en/dev/topics/forms/ > > i use command for create application > #python manage.py startapp form > > after this a use this code in model.py file > > from django import forms > > class ContactForm(forms.Form): > subject = forms.CharField(max_length=100) > message = forms.CharField() > sender = forms.EmailField() > cc_myself = forms.BooleanField(required=False) > > but nothing can be show in when a run this command > #python manage.py sql form. > > where is problem ? > please help. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-us...@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com<django-users%2bunsubscr...@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.