created forms.py and made Forms for Book & Author)

parent 2a88cfe0
from django import forms
from .models import Book, Author
class BookForm(forms.ModelForm):
class Meta:
model = Book
fields = "__all__"
class AuthorForm(forms.ModelForm):
class Meta:
model = Author
fields = "__all__"
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