1
from django.contrib import admin
2
from models import Record
3
4
5
admin.site.register(Record)
6
7