I am a new in Django world. I have installed Django and have made a few examples to ge some feeling how it works. Now I would make a very simple application with one class (table). This class will be presented in a form such that a user can add a new one, or can change the content of fields if he wants. I have never used the 'form' library befor. But I think it will be simple to implement this in Django.
The Model in this application looks like : class ContactInfo(models.Model): contactId = models.IntegerField(primary_key=True) role = models.CharField() title = models.CharField() givenName = models.CharField() surName = models.CharField() email = models.CharField() fax = models.CharField() .... .... So it is a very simple class without any relation. Would somebody help me about the next problem? With regards, Nader --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---