64 lines
2.3 KiB
Python
64 lines
2.3 KiB
Python
from django.contrib import admin
|
|
|
|
from .models import Region, Site, MunicipalLocation, \
|
|
StudyLocation, StorageLocation
|
|
|
|
|
|
class RegionAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'code', 'sort_order')
|
|
list_display_links = ('name',)
|
|
search_fields = ('name', 'code')
|
|
list_per_page = 25
|
|
fields = ('name', 'code', 'sort_order')
|
|
|
|
|
|
class SiteAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'code', 'region', 'description', 'sort_order')
|
|
list_display_links = ('name',)
|
|
search_fields = ('name', 'code', 'region', 'description')
|
|
list_per_page = 25
|
|
fields = ('name', 'code', 'region', 'description', 'sort_order')
|
|
|
|
|
|
class MunicipalLocationAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'code', 'site', 'municipal_location_type',
|
|
'description', 'sort_order')
|
|
list_display_links = ('name',)
|
|
search_fields = ('name', 'code', 'site', 'municipal_location_type',
|
|
'description')
|
|
list_per_page = 25
|
|
fields = ('name', 'code', 'site', 'municipal_location_type',
|
|
'description', 'sort_order')
|
|
|
|
|
|
class StudyLocationAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'code', 'site', 'study_location_type',
|
|
'treatment_type', 'municipal_location', 'collecting_location',
|
|
'description', 'sort_order')
|
|
list_display_links = ('name',)
|
|
search_fields = ('name', 'code', 'site', 'study_location_type',
|
|
'treatment_type', 'municipal_location', 'collecting_location',
|
|
'description')
|
|
list_per_page = 25
|
|
fields = ('name', 'code', 'site', 'study_location_type',
|
|
'treatment_type', 'municipal_location', 'collecting_location',
|
|
'description', 'sort_order')
|
|
|
|
|
|
class StorageLocationAdmin(admin.ModelAdmin):
|
|
list_display = ('__str__', 'facility', 'building', 'room', 'freezer', 'temp_c',
|
|
'description', 'sort_order')
|
|
list_display_links = ('__str__',)
|
|
search_fields = ('__str__', 'facility', 'building', 'room', 'freezer', 'temp_c',
|
|
'description')
|
|
list_per_page = 25
|
|
fields = ('facility', 'building', 'room', 'freezer', 'temp_c',
|
|
'description', 'sort_order')
|
|
|
|
|
|
|
|
admin.site.register(Region, RegionAdmin)
|
|
admin.site.register(Site, SiteAdmin)
|
|
admin.site.register(MunicipalLocation, MunicipalLocationAdmin)
|
|
admin.site.register(StudyLocation, StudyLocationAdmin)
|
|
admin.site.register(StorageLocation, StorageLocationAdmin)
|