mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-09 08:05:13 +02:00
Enhancements to Admin (#524)
* Add columns to the IgnoreEmail admin page including a calculated column of the queues the ignore relates to. * Add columns to the IgnoreEmail admin page including a calculated column of the queues the ignore relates to. * Revert "Merge pull request #519 from mrkiwi-nz/master" This reverts commit410f59ad16
, reversing changes made tofde06d3ab1
. * Add columns to the IgnoreEmail admin page including a calculated column of the queues the ignore relates to. * Merge pull request #519 from mrkiwi-nz/master Added some helpful columns and filters to the follow-up list page. * Add more columns to the IgnoreEmail admin page including a calculated column of the queues the ignore relates to.
This commit is contained in:
committed by
Garret Wassermann
parent
410f59ad16
commit
ef0ba19a3b
@ -65,7 +65,11 @@ class EmailTemplateAdmin(admin.ModelAdmin):
|
||||
list_filter = ('locale', )
|
||||
|
||||
|
||||
@admin.register(IgnoreEmail)
|
||||
class IgnoreEmailAdmin(admin.ModelAdmin):
|
||||
list_display = ('name', 'queue_list', 'email_address', 'keep_in_mailbox')
|
||||
|
||||
|
||||
admin.site.register(PreSetReply)
|
||||
admin.site.register(EscalationExclusion)
|
||||
admin.site.register(KBCategory)
|
||||
admin.site.register(IgnoreEmail)
|
||||
|
Reference in New Issue
Block a user