forked from uncloud/uncloud
2cda4dd57b
Best practice See https://docs.djangoproject.com/en/3.0/topics/auth/customizing/#using-a-custom-user-model-when-starting-a-project
6 lines
130 B
Python
6 lines
130 B
Python
from django.contrib import admin
|
|
|
|
from .models import Product, Feature
|
|
|
|
admin.site.register(Product)
|
|
admin.site.register(Feature)
|