7 lines
105 B
Python
Executable File
7 lines
105 B
Python
Executable File
from django.contrib import admin
|
|
from .models import FeedbackModel
|
|
|
|
|
|
|
|
admin.site.register(FeedbackModel)
|