5 lines
102 B
Python
5 lines
102 B
Python
from django.contrib import admin
|
|
from custompage.models import *
|
|
|
|
admin.site.register(customPage)
|