19 lines
337 B
Python
19 lines
337 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
from intervention.models import Intervention
|
||
|
|
||
|
|
||
|
class InterventionAdmin(admin.ModelAdmin):
|
||
|
list_display = [
|
||
|
"id",
|
||
|
"title",
|
||
|
"type",
|
||
|
"handler",
|
||
|
"created_on",
|
||
|
"is_active",
|
||
|
"is_deleted",
|
||
|
]
|
||
|
|
||
|
|
||
|
admin.site.register(Intervention, InterventionAdmin)
|