6 lines
119 B
Python
6 lines
119 B
Python
|
from django.contrib import admin
|
||
|
from buyer.models import Card
|
||
|
|
||
|
# Register your models here.
|
||
|
|
||
|
admin.site.register(Card)
|