7 lines
211 B
Python
7 lines
211 B
Python
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from .models import Tag, Product, ProductOnBill, Receipt, ShopTag, Shop
|
|
|
|
admin.site.register([Tag, Product, ProductOnBill, Receipt, ShopTag, Shop])
|