Added Assignments class properly

Moved Assignments class from views.py to models.py
parent 25d5a76f
from django.db import models
from django.urls import reverse
\ No newline at end of file
from django.urls import reverse
class Assignments(models.Model):
name = models.CharField(max_length = 25)
description = models.Charfield(max_length = 200)
max_points = models.IntegerField()
\ No newline at end of file
from django.http import HttpResponse
from django.db import models
def homepage(request):
return HttpResponse('Welcome to Widget!')
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