4 lines
90 B
Python
4 lines
90 B
Python
from django.contrib import admin
|
|
from .models import Contact
|
|
|
|
admin.site.register(Contact) |