Jun 272009
In admin interface,
the element of list will be displayed.
—————-
e.g.,
from django.contrib import admin
from mailer.models import Message
class MessageAdmin(admin.ModelAdmin):
list_display = (‘id’, ‘to_address’, ‘subject’, ‘when_added’, ‘priority’)
Posted by weboom at 6:49 am
Tagged with: admin, list_display
