We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d73c393 commit 0af34c7Copy full SHA for 0af34c7
gateway/api/admin.py
@@ -46,9 +46,10 @@ class ComputeResourceAdmin(admin.ModelAdmin):
46
class JobAdmin(admin.ModelAdmin):
47
"""JobAdmin."""
48
49
- search_fields = ["author__username", "program__title"]
+ search_fields = ["id", "author__username", "program__title"]
50
list_filter = ["status"]
51
exclude = ["arguments", "env_vars", "logs", "result"]
52
+ ordering = ['-created']
53
54
55
@admin.register(RuntimeJob)
0 commit comments