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 = (
|
list_display = (
|
||||||
'subject',
|
'subject',
|
||||||
'processed',
|
'processed',
|
||||||
|
'read',
|
||||||
'mailbox',
|
'mailbox',
|
||||||
'outgoing',
|
'outgoing',
|
||||||
)
|
)
|
||||||
|
|
@ -28,6 +29,8 @@ class MessageAdmin(admin.ModelAdmin):
|
||||||
list_filter = (
|
list_filter = (
|
||||||
'mailbox',
|
'mailbox',
|
||||||
'outgoing',
|
'outgoing',
|
||||||
|
'processed',
|
||||||
|
'read',
|
||||||
)
|
)
|
||||||
raw_id_fields = (
|
raw_id_fields = (
|
||||||
'in_reply_to',
|
'in_reply_to',
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from distutils.core import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='django-mailbox',
|
name='django-mailbox',
|
||||||
version='1.4',
|
version='1.4.1',
|
||||||
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
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.',
|
description='Import mail from POP3, IMAP, local mailboxes or directly from Postfix or Exim4 into your Django application automatically.',
|
||||||
author='Adam Coddington',
|
author='Adam Coddington',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue