Files
RRBEC/orders/admin.py

7 lines
95 B
Python

from django.contrib import admin
from orders.models import Order
admin.site.register(Order)