mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
20 lines
503 B
Python
20 lines
503 B
Python
from django.contrib import admin
|
|
|
|
from categories.models import Categories
|
|
from clients.models import Client
|
|
from comandas.models import Comanda, ProductComanda
|
|
from typePay.models import TypePay
|
|
from products.models import Product
|
|
from mesas.models import Mesa
|
|
|
|
|
|
admin.site.register(Mesa)
|
|
admin.site.register(Product)
|
|
admin.site.register(Categories)
|
|
admin.site.register(Client)
|
|
admin.site.register(Comanda)
|
|
admin.site.register(TypePay)
|
|
admin.site.register(ProductComanda)
|
|
|
|
# Register your models here.
|