Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_k3git
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Gomez
midterm_k3git
Commits
7d25903a
Commit
7d25903a
authored
Mar 02, 2023
by
Nate Brevin A. Que
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'assignments' into 'master'
Assignments See merge request
!2
parents
3ae622cd
3ec21087
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
11 deletions
+34
-11
admin.py
widget_k3git/assignments/admin.py
+13
-1
models.py
widget_k3git/assignments/models.py
+7
-1
views.py
widget_k3git/assignments/views.py
+14
-9
db.sqlite3
widget_k3git/db.sqlite3
+0
-0
No files found.
widget_k3git/assignments/admin.py
View file @
7d25903a
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
widget_k3git/assignments/models.py
View file @
7d25903a
...
...
@@ -6,6 +6,9 @@ class Course(models.Model):
title
=
models
.
CharField
(
max_length
=
100
)
section
=
models
.
CharField
(
max_length
=
3
)
def
__str__
(
self
):
return
'{} {}-{}'
.
format
(
self
.
code
,
self
.
title
,
self
.
section
)
class
Assignment
(
models
.
Model
):
name
=
models
.
CharField
(
max_length
=
100
)
...
...
@@ -13,3 +16,6 @@ class Assignment(models.Model):
course
=
models
.
ForeignKey
(
Course
,
on_delete
=
models
.
CASCADE
)
perfect_score
=
models
.
IntegerField
()
passing_score
=
models
.
IntegerField
()
def
__str__
(
self
):
return
self
.
name
\ No newline at end of file
widget_k3git/assignments/views.py
View file @
7d25903a
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
.models
import
Course
,
Assignment
def
index
(
request
):
return
HttpResponse
(
"""<H1>Widget's Assignments Page</H1><br>
<H2><ul>
<li>Assignment Name: </li>
<li>Description: </li>
<li>Perfect Score: </li>
<li>Passing Score: </li>
<li>Course/Section: </li>
</H2>
"""
)
\ No newline at end of file
page_content
=
"""<H1>Widget's Assignments Page</H1>"""
for
assignment
in
Assignment
.
objects
.
all
():
page_content
+=
"""<ul>
<li>Assignment Name: {}<br>
<li>Description: {}<br>
<li>Perfect Score: {}<br>
<li>Passing Score: {}<br>
<li>Course/Section: {}<br>
</ul>"""
.
format
(
assignment
.
name
,
assignment
.
description
,
assignment
.
perfect_score
,
assignment
.
passing_score
,
assignment
.
course
)
return
HttpResponse
(
page_content
)
\ No newline at end of file
widget_k3git/db.sqlite3
View file @
7d25903a
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment