JourneyJoker/frontend/admin.py

8 lines
138 B
Python
Raw Normal View History

2020-01-22 17:32:13 +00:00
from django.contrib import admin
2020-01-26 10:53:25 +00:00
from frontend.models import Testimonial
2020-01-22 17:32:13 +00:00
# Register your models here.
2020-01-26 10:53:25 +00:00
admin.site.register(Testimonial)