Add admin

This commit is contained in:
Joshua Rubingh 2020-11-27 12:48:50 +01:00
parent 5f5becdf9d
commit e4c51874dc
1 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,10 @@
from django.contrib import admin
from .models import Synthea
# Register your models here.
@admin.register(Synthea)
class SyntheaAdmin(admin.ModelAdmin):
list_display = ('id', 'state','population', 'gender','age','module')
ordering = ('-created_at', )
search_fields = ('state', 'module',)
readonly_fields = ('created_at', 'updated_at')