You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konova/intervention/admin.py

18 lines
324 B
Python

3 years ago
from django.contrib import admin
from intervention.models import Intervention
class InterventionAdmin(admin.ModelAdmin):
list_display = [
"id",
"title",
"process_type",
3 years ago
"handler",
"created_on",
"deleted_on",
3 years ago
]
admin.site.register(Intervention, InterventionAdmin)