Created forms.py and updated contents

parent 07327243
from django.forms import ModelForm
from .models import Author, Book
class BookForm(ModelForm):
class Meta:
model = Book
fields = ["title", "author", "publisher", "year_published", "ISBN", "blurb", ]
class AuthorForm(ModelForm):
class Meta:
model = Author
fields = ["first_name", "last_name", "age", "nationality", "bio", ]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment