Created ModelForms for Author and Books

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