7 lines
127 B
Python
7 lines
127 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
from .models import Booksigner
|
||
|
|
||
|
# Register your models here.
|
||
|
|
||
|
admin.site.register(Booksigner)
|