from django.contrib import admin from app.models import Order, Waiter, Meal # Register your models here. admin.site.register([Meal, Order, Waiter])