SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 3d5d6e4f authored by George Katsikas's avatar George Katsikas :goat:
Browse files

add admin panel for submission events

parent aeee3c70
No related branches found
No related tags found
No related merge requests found
...@@ -424,6 +424,19 @@ class EditorialDecisionAdmin(admin.ModelAdmin): ...@@ -424,6 +424,19 @@ class EditorialDecisionAdmin(admin.ModelAdmin):
@admin.register(SubmissionEvent) @admin.register(SubmissionEvent)
class SubmissionEventAdmin(admin.ModelAdmin): class SubmissionEventAdmin(admin.ModelAdmin):
search_fields = [
"submission__title",
"submission__author_list",
"submission__preprint__identifier_w_vn_nr",
]
list_display = [
"submission",
"event",
"text",
]
list_filter = [
"event",
]
autocomplete_fields = [ autocomplete_fields = [
"submission", "submission",
] ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment