Lengow/orders/admin.py

6 lines
94 B
Python

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