0797a6b99f
* refactors base attributes created and deleted into UserActionLogEntry foreign keys * refactors all related queries and process logic * fixes binding_on into binding_date in intervention/detail/view.html * adds basic __str__ for some models *
14 lines
241 B
Python
14 lines
241 B
Python
from django.contrib import admin
|
|
|
|
from organisation.models import Organisation
|
|
|
|
|
|
class OrganisationAdmin(admin.ModelAdmin):
|
|
list_display = [
|
|
"name",
|
|
"created",
|
|
]
|
|
|
|
|
|
admin.site.register(Organisation, OrganisationAdmin)
|