class Infos(Model):

    created = DateTimeField(auto_now_add=True)    modified = DateTimeField(
auto_now=True)

    name = CharField(max_length=255, blank=False, null=False)
    phone = CharField(max_length=255, blank=False, null=False)
    address = CharField(max_length=255, blank=False, null=False)

And back in the admin list display the saved objects.
I appreciate the help!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/84054c45-79c1-41fe-b963-8faba748e833%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to