On Jul 3, 6:32 pm, ashwoods <[EMAIL PROTECTED]> wrote:
> if i have a method for a model, that returns True or False, is there a
> way for the admin to show automatically a symbol like it does for
> booleanfields or something similar?

From http://www.djangoproject.com/documentation/model-api/ :

If the string given is a method of the model that returns True or
False Django will display a pretty “on” or “off” icon if you give the
method a boolean attribute whose value is True.

class Person(models.Model):
    first_name = models.CharField(max_length=50)
    birthday = models.DateField()

    class Admin:
        list_display = ('name', 'born_in_fifties')

    def born_in_fifties(self):
        return self.birthday.strftime('%Y')[:3] == 5
    born_in_fifties.boolean = True

--
DR.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to