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
7318a5e8
Commit
7318a5e8
authored
Mar 04, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed formatting and variable names, fixed import in models.py
parent
1dfeae68
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
23 deletions
+29
-23
models.py
widget_casanatics/assignments/models.py
+11
-11
views.py
widget_casanatics/assignments/views.py
+18
-12
No files found.
widget_casanatics/assignments/models.py
View file @
7318a5e8
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
)
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
)
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
)
course
=
models
.
ForeignKey
(
Course
,
on_delete
=
models
.
CASCADE
)
perfect_score
=
models
.
IntegerField
(
default
=
0
)
@
property
def
passing_score
(
self
):
if
(
self
.
perfect_score
!=
None
)
:
if
self
.
perfect_score
!=
None
:
return
self
.
perfect_score
*
0.60
def
__str__
(
self
):
return
self
.
name
\ No newline at end of file
return
self
.
name
widget_casanatics/assignments/views.py
View file @
7318a5e8
from
django.
shortcuts
import
HttpResponse
from
django.
http
import
HttpResponse
from
.models
import
Assignment
,
Course
# Create your views here.
def
assign
(
request
):
def
assignments
(
request
):
assignments
=
Assignment
.
objects
.
all
()
response
=
"Widget's Assignments Page <br><br>"
for
assignment
in
assignments
:
AName
=
"Asssignment Name: "
+
assignment
.
name
+
"<br>"
ADesc
=
"Description: "
+
assignment
.
description
+
"<br>"
APeScore
=
"Perfect Score: "
+
str
(
assignment
.
perfect_score
)
+
"<br>"
APaScore
=
"Passing Score: "
+
str
(
assignment
.
passing_score
)
+
"<br>"
Coursec
=
"Course/Section: "
+
assignment
.
course
.
code
+
" "
+
assignment
.
course
.
title
+
"-"
+
assignment
.
course
.
section
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
+=
AName
+
ADesc
+
APeScore
+
APaScore
+
Coursec
+
"<br><br>"
response
+=
name
+
desc
+
perfect
+
passing
+
courseSection
+
"<br><br>"
return
HttpResponse
(
response
)
return
HttpResponse
(
response
)
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