from django.forms import ( Form, CharField, ) class GradesForm(Form): name = CharField() grades = CharField()