Created ModelForms for Course and Assignment

parent 2bfa43d9
from django.forms import ModelForm
from .models import Course, Assignment
class CourseForm(ModelForm):
class Meta:
model = Course
fields = "__all__"
class AssignmentForm(ModelForm):
class Meta:
model = Assignment
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