Commit be1b6daa authored by Ysabella Panghulan's avatar Ysabella Panghulan

created forms.py

parent d723596f
from django import forms
from django.forms import ModelForm
from .models import Author
class AuthorForm(ModelForm):
class Meta:
model = Author
fields = '__all__'
\ No newline at end of file
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