Complete the code to register the model Book in the Django admin site.
from django.contrib import admin from .models import Book admin.site.[1](Book)
Use admin.site.register(ModelName) to register a model with the Django admin.
Complete the code to import the Author model from the current app's models.
from .models import [1]
To register the Author model, you must import it first from .models.
Fix the error in the code to properly register the Publisher model in admin.
from django.contrib import admin from .models import Publisher admin.site.[1](Publisher)
The correct method is register all lowercase and singular.
Fill both blanks to register the Category model with a custom admin class CategoryAdmin.
from django.contrib import admin from .models import Category admin.site.[1](Category, [2])
Use admin.site.register(Model, AdminClass) to register a model with a custom admin class.
Fill all three blanks to register the Article model with a custom admin class ArticleAdmin and import it correctly.
from django.contrib import admin from .models import [1] admin.site.[2]([3], ArticleAdmin)
Import the Article model, then use admin.site.register(Article, ArticleAdmin) to register it with the custom admin class.