Hello Gondor,

If you mean 'admin model' is http://localhost:8000/admin/ (Django
Admin page)

your problem solution is mentioned in this docs:
http://docs.djangoproject.com/en/1.2/ref/contrib/admin/#modeladmin-methods

Widoyo

On Aug 21, 2:57 pm, gondor <[email protected]> wrote:
> class Notes(models.Model):
>   name = models.ForeignKey('name', blank=True, null=True)
>   text = models.TextField('Text',blank=True)
>   date = models.DateField(blank=True, default=datetime.date.today());
>
> I have a simple admin model for inputting a note with a date into the
> database.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
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.

Reply via email to