admin.py 86 B

123
  1. from django.contrib import admin
  2. from .models import Quote
  3. admin.site.register(Quote)