mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
8 lines
153 B
Python
8 lines
153 B
Python
from django.contrib import admin
|
|
|
|
from comandas.models import Comanda, ProductComanda
|
|
|
|
admin.site.register(Comanda)
|
|
admin.site.register(ProductComanda)
|
|
|