mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-04 21:20:35 +00:00
10 lines
261 B
Python
10 lines
261 B
Python
from django.contrib import admin
|
|
|
|
from comandas.models import Comanda, ProductComanda, StockMovement, StockMovementType
|
|
|
|
admin.site.register(Comanda)
|
|
admin.site.register(ProductComanda)
|
|
admin.site.register(StockMovementType)
|
|
admin.site.register(StockMovement)
|
|
|