7 lines
138 B
Python
7 lines
138 B
Python
from django.contrib import admin
|
|
|
|
from frontend.models import Testimonial
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(Testimonial)
|