This commit is contained in:
mipel
2021-07-01 13:36:07 +02:00
commit c14e9466fb
91 changed files with 22395 additions and 0 deletions

18
intervention/admin.py Normal file
View File

@@ -0,0 +1,18 @@
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)