Commit b7872cc4 authored by Agu Syquia's avatar Agu Syquia

Created forms.py

Allows forms to be created in authors and books.
parent 9e7e4690
from django import forms
from .models import Books, Author
class AuthorForm(forms.ModelForm):
class Meta:
model = Author
fields = "__all__"
class BooksForm(forms.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