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