1
0
Fork 0

Show 'read' date in admin for messages.

This commit is contained in:
Adam Coddington 2012-12-07 11:08:17 -08:00
parent fc53a8203b
commit 4a785a18ce
2 changed files with 4 additions and 1 deletions

View file

@ -21,6 +21,7 @@ class MessageAdmin(admin.ModelAdmin):
list_display = (
'subject',
'processed',
'read',
'mailbox',
'outgoing',
)
@ -28,6 +29,8 @@ class MessageAdmin(admin.ModelAdmin):
list_filter = (
'mailbox',
'outgoing',
'processed',
'read',
)
raw_id_fields = (
'in_reply_to',

View file

@ -2,7 +2,7 @@ from distutils.core import setup
setup(
name='django-mailbox',
version='1.4',
version='1.4.1',
url='http://bitbucket.org/latestrevision/django-mailbox/',
description='Import mail from POP3, IMAP, local mailboxes or directly from Postfix or Exim4 into your Django application automatically.',
author='Adam Coddington',