forked from mirror/django-mailbox
Show 'read' date in admin for messages.
This commit is contained in:
parent
fc53a8203b
commit
4a785a18ce
2 changed files with 4 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue