mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
Removing 'body' from admin message display.
This commit is contained in:
parent
58ca8beeef
commit
a6b4d3729a
2 changed files with 4 additions and 1 deletions
|
|
@ -71,6 +71,9 @@ class MessageAdmin(admin.ModelAdmin):
|
||||||
'processed',
|
'processed',
|
||||||
'read',
|
'read',
|
||||||
)
|
)
|
||||||
|
exclude = (
|
||||||
|
'body',
|
||||||
|
)
|
||||||
raw_id_fields = (
|
raw_id_fields = (
|
||||||
'in_reply_to',
|
'in_reply_to',
|
||||||
)
|
)
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -6,7 +6,7 @@ tests_require = [
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='django-mailbox',
|
name='django-mailbox',
|
||||||
version='3.0',
|
version='3.0.1',
|
||||||
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
||||||
description=(
|
description=(
|
||||||
'Import mail from POP3, IMAP, local mailboxes or directly from '
|
'Import mail from POP3, IMAP, local mailboxes or directly from '
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue