Added model for assignments

Yeah, what the title said.
parent 241c9bd1
from django.http import HttpResponse
from django.db import models
def homepage(request):
return HttpResponse('Welcome to Widget!')
......@@ -6,6 +7,11 @@ def homepage(request):
def assignments(request):
return HttpResponse('This is the Assignments page!')
class assignments(models.Model):
name = models.CharField(max_length = 25)
description = models.Charfield(max_length = 200)
max_points = models.IntegerField()
def announcements(request):
return HttpResponse('This is the Announcement Board!')
......
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