Remove unused field for collection rule admin
This commit is contained in:
parent
6e1a3af26d
commit
92098d50fa
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ from newsreader.news.collection.models import CollectionRule
|
||||||
|
|
||||||
|
|
||||||
class CollectionRuleAdmin(admin.ModelAdmin):
|
class CollectionRuleAdmin(admin.ModelAdmin):
|
||||||
fields = ("url", "name", "timezone", "category", "favicon", "user")
|
fields = ("url", "name", "category", "favicon", "user")
|
||||||
|
|
||||||
list_display = ("name", "type_display", "category", "url", "last_run", "succeeded")
|
list_display = ("name", "type_display", "category", "url", "last_run", "succeeded")
|
||||||
list_filter = ("user",)
|
list_filter = ("user",)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue