Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_casanatics
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
John Aidan Vincent M. Ng
midterm_casanatics
Commits
9b8480f2
Commit
9b8480f2
authored
Mar 04, 2023
by
justin
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/assignment_wip'
parents
1e4cf00e
cd4ff487
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
67 additions
and
4 deletions
+67
-4
admin.py
widget_casanatics/assignments/admin.py
+12
-1
models.py
widget_casanatics/assignments/models.py
+23
-1
urls.py
widget_casanatics/assignments/urls.py
+6
-0
views.py
widget_casanatics/assignments/views.py
+25
-2
urls.py
widget_casanatics/widget_casanatics/urls.py
+1
-0
No files found.
widget_casanatics/assignments/admin.py
View file @
9b8480f2
from
django.contrib
import
admin
from
.models
import
Assignment
,
Course
# Register your models here.
class
AssignmentAdmin
(
admin
.
ModelAdmin
):
model
=
Assignment
list_display
=
(
"name"
,
"description"
,
"course"
,
"perfect_score"
,
"passing_score"
)
class
CourseAdmin
(
admin
.
ModelAdmin
):
model
=
Course
list_display
=
(
"code"
,
"title"
,
"section"
)
admin
.
site
.
register
(
Assignment
,
AssignmentAdmin
)
admin
.
site
.
register
(
Course
,
CourseAdmin
)
\ No newline at end of file
widget_casanatics/assignments/models.py
View file @
9b8480f2
from
django.db
import
models
# Create your models here.
class
Course
(
models
.
Model
):
code
=
models
.
CharField
(
max_length
=
10
)
title
=
models
.
CharField
(
max_length
=
50
)
section
=
models
.
CharField
(
max_length
=
3
)
def
__str__
(
self
):
return
self
.
code
class
Assignment
(
models
.
Model
):
name
=
models
.
CharField
(
max_length
=
100
)
description
=
models
.
TextField
(
blank
=
True
)
course
=
models
.
ForeignKey
(
Course
,
on_delete
=
models
.
CASCADE
)
perfect_score
=
models
.
IntegerField
(
default
=
0
)
@
property
def
passing_score
(
self
):
if
self
.
perfect_score
!=
None
:
return
self
.
perfect_score
*
0.60
def
__str__
(
self
):
return
self
.
name
widget_casanatics/assignments/urls.py
0 → 100644
View file @
9b8480f2
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
""
,
views
.
assignments
,
name
=
"assignments"
),
]
widget_casanatics/assignments/views.py
View file @
9b8480f2
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
.models
import
Assignment
,
Course
# Create your views here.
def
assignments
(
request
):
assignments
=
Assignment
.
objects
.
all
()
response
=
"Widget's Assignments Page <br><br>"
for
assignment
in
assignments
:
name
=
"Asssignment Name: "
+
assignment
.
name
+
"<br>"
desc
=
"Description: "
+
assignment
.
description
+
"<br>"
perfect
=
"Perfect Score: "
+
str
(
assignment
.
perfect_score
)
+
"<br>"
passing
=
"Passing Score: "
+
str
(
assignment
.
passing_score
)
+
"<br>"
courseSection
=
(
"Course/Section: "
+
assignment
.
course
.
code
+
" "
+
assignment
.
course
.
title
+
"-"
+
assignment
.
course
.
section
)
response
+=
name
+
desc
+
perfect
+
passing
+
courseSection
+
"<br><br>"
return
HttpResponse
(
response
)
widget_casanatics/widget_casanatics/urls.py
View file @
9b8480f2
...
...
@@ -21,4 +21,5 @@ urlpatterns = [
path
(
"dashboard/"
,
include
(
"dashboard.urls"
)),
path
(
"calendar/"
,
include
(
"calendar_app.urls"
,
namespace
=
"calendar_app"
)),
path
(
"forum/"
,
include
(
"forum.urls"
)),
path
(
"assignments/"
,
include
(
"assignments.urls"
)),
]
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