models from django.db import models # Create your models here. class Course(models.Model): title=models.CharField(max_length=32) desc=models.CharField(max_length=32) from django.db import models # Create your models here. class Author(models.Model):…