mpeltriaux
f4541abf20
* refactors geometry field into GeoReferencedMixin, holding more handy methods and used in all models, formerly holding the geometry field * refactors backend admin configuration, so modified, deleted and created are not editable in the backend which also skips loading of all possible choices * fixes typo in sanitize_db command * introduces GeometryConflict model, holding a link between two geometries, where one overlaps the other * adds first (WIP) messages into detail views of ema and intervention for test purposes
55 lines
1.2 KiB
Python
55 lines
1.2 KiB
Python
from django.contrib import admin
|
|
|
|
from intervention.models import Intervention, Responsibility, Legal, Revocation, InterventionDocument
|
|
from konova.admin import AbstractDocumentAdmin, BaseObjectAdmin
|
|
|
|
|
|
class InterventionAdmin(BaseObjectAdmin):
|
|
list_display = [
|
|
"id",
|
|
"identifier",
|
|
"title",
|
|
"created",
|
|
"deleted",
|
|
]
|
|
|
|
|
|
class InterventionDocumentAdmin(AbstractDocumentAdmin):
|
|
pass
|
|
|
|
|
|
class ResponsibilityAdmin(admin.ModelAdmin):
|
|
list_display = [
|
|
"id",
|
|
"registration_office",
|
|
"registration_file_number",
|
|
"conservation_office",
|
|
"conservation_file_number",
|
|
"handler",
|
|
]
|
|
|
|
|
|
class LegalAdmin(admin.ModelAdmin):
|
|
list_display = [
|
|
"id",
|
|
"process_type",
|
|
"registration_date",
|
|
"binding_date",
|
|
]
|
|
|
|
|
|
class RevocationAdmin(admin.ModelAdmin):
|
|
list_display = [
|
|
"id",
|
|
"date",
|
|
"comment",
|
|
"created",
|
|
]
|
|
|
|
|
|
admin.site.register(Intervention, InterventionAdmin)
|
|
admin.site.register(Responsibility, ResponsibilityAdmin)
|
|
admin.site.register(Legal, LegalAdmin)
|
|
admin.site.register(Revocation, RevocationAdmin)
|
|
admin.site.register(InterventionDocument, InterventionDocumentAdmin)
|