producthunt/products/admin.py

5 lines
91 B
Python
Raw Normal View History

2020-03-09 18:17:36 -07:00
from django.contrib import admin
2020-03-10 12:01:41 -07:00
from .models import Product
2020-03-09 18:17:36 -07:00
2020-03-10 12:01:41 -07:00
admin.site.register(Product)