This commit is contained in:
mipel
2021-07-01 13:36:07 +02:00
commit a5e8bcfa8c
91 changed files with 22395 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from django.contrib import admin
from organisation.models import Organisation
class OrganisationAdmin(admin.ModelAdmin):
list_display = [
"name",
"type",
"created_on",
"created_by",
]
admin.site.register(Organisation, OrganisationAdmin)