Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_father when can i be on my own i have the hello world to see
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
father when can i be on my own i have the hello world to see
widget_father when can i be on my own i have the hello world to see
Commits
bdf7e92f
Verified
Commit
bdf7e92f
authored
Mar 15, 2022
by
Angelo Esteban
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Assignment data model
parent
60374faf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
9 deletions
+36
-9
admin.py
assignments/admin.py
+3
-1
0001_initial.py
assignments/migrations/0001_initial.py
+23
-0
models.py
assignments/models.py
+5
-1
urls.py
assignments/urls.py
+4
-5
views.py
assignments/views.py
+1
-2
No files found.
assignments/admin.py
View file @
bdf7e92f
from
django.contrib
import
admin
from
django.contrib
import
admin
# Register your models here.
from
.models
import
Assignment
admin
.
site
.
register
(
Assignment
)
assignments/migrations/0001_initial.py
0 → 100644
View file @
bdf7e92f
# Generated by Django 4.0.3 on 2022-03-15 12:17
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Assignment'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'name'
,
models
.
CharField
(
max_length
=
120
)),
(
'description'
,
models
.
TextField
(
blank
=
True
)),
(
'max_points'
,
models
.
IntegerField
(
default
=
1
)),
],
),
]
assignments/models.py
View file @
bdf7e92f
from
django.db
import
models
from
django.db
import
models
# Create your models here.
class
Assignment
(
models
.
Model
):
name
=
models
.
CharField
(
max_length
=
120
)
description
=
models
.
TextField
(
blank
=
True
)
max_points
=
models
.
IntegerField
(
default
=
1
)
assignments/urls.py
View file @
bdf7e92f
from
django.urls
import
path
from
django.urls
import
path
from
.views
import
index
from
.views
import
index
urlpatterns
=
[
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
path
(
''
,
index
,
name
=
'index'
),
]
]
app_name
=
"assignments"
app_name
=
"assignments"
assignments/views.py
View file @
bdf7e92f
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
django.http
import
HttpResponse
# View for assignment page
def
index
(
request
):
def
index
(
request
):
return
HttpResponse
(
"This is the Assignments page!"
)
return
HttpResponse
(
"This is the Assignments page!"
)
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