Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4395bf commit 2143669Copy full SHA for 2143669
django_dbq/admin.py
@@ -0,0 +1,10 @@
1
+from django.contrib import admin
2
+
3
+# Register your models here.
4
5
+from .models import Job
6
7
8
+@admin.register(Job)
9
+class JobAdmin(admin.ModelAdmin):
10
+ list_display = ('id', 'name', 'state', 'queue_name', 'priority', 'run_after')
0 commit comments