Commit 3ec21087 authored by Nate Brevin A. Que's avatar Nate Brevin A. Que

Populated the models associated with the assignments page and updated the page...

Populated the models associated with the assignments page and updated the page itself to show the assignments stored in the database.
parent e1c079fa
from django.contrib import admin from django.contrib import admin
# Register your models here. from .models import Course, Assignment
class CourseAdmin(admin.ModelAdmin):
model = Course
class AssignmentAdmin(admin.ModelAdmin):
model = Assignment
admin.site.register(Course, CourseAdmin)
admin.site.register(Assignment, AssignmentAdmin)
\ No newline at end of file
from django.shortcuts import render from django.shortcuts import render
from django.http import HttpResponse from django.http import HttpResponse
from .models import Course, Assignment
def index(request): def index(request):
return HttpResponse("""<H1>Widget's Assignments Page</H1><br> page_content="""<H1>Widget's Assignments Page</H1>"""
<H2><ul> for assignment in Assignment.objects.all():
<li>Assignment Name: </li> page_content += """<ul>
<li>Description: </li> <li>Assignment Name: {}<br>
<li>Perfect Score: </li> <li>Description: {}<br>
<li>Passing Score: </li> <li>Perfect Score: {}<br>
<li>Course/Section: </li> <li>Passing Score: {}<br>
</H2> <li>Course/Section: {}<br>
""") </ul>""".format(assignment.name, assignment.description,
\ No newline at end of file assignment.perfect_score, assignment.passing_score,
assignment.course)
return HttpResponse(page_content)
\ No newline at end of file
No preview for this file type
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