Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm-group3
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 Michael T. Amador
midterm-group3
Commits
2d56e0c7
Commit
2d56e0c7
authored
Mar 06, 2023
by
John Michael T. Amador
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
assignments update
parent
aa2cb290
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
3 additions
and
3 deletions
+3
-3
apps.cpython-39.pyc
widget_group3/Assignments/__pycache__/apps.cpython-39.pyc
+0
-0
urls.cpython-39.pyc
widget_group3/Assignments/__pycache__/urls.cpython-39.pyc
+0
-0
urls.py
widget_group3/Assignments/urls.py
+1
-1
settings.cpython-39.pyc
..._group3/widget_group3/__pycache__/settings.cpython-39.pyc
+0
-0
urls.cpython-39.pyc
widget_group3/widget_group3/__pycache__/urls.cpython-39.pyc
+0
-0
settings.py
widget_group3/widget_group3/settings.py
+1
-1
urls.py
widget_group3/widget_group3/urls.py
+1
-1
No files found.
widget_group3/Assignments/__pycache__/apps.cpython-39.pyc
View file @
2d56e0c7
No preview for this file type
widget_group3/Assignments/__pycache__/urls.cpython-39.pyc
View file @
2d56e0c7
No preview for this file type
widget_group3/Assignments/urls.py
View file @
2d56e0c7
...
@@ -5,4 +5,4 @@ urlpatterns = [
...
@@ -5,4 +5,4 @@ urlpatterns = [
path
(
''
,
index
,
name
=
'index'
),
path
(
''
,
index
,
name
=
'index'
),
]
]
# This might be needed, depending on your Django version
# This might be needed, depending on your Django version
app_name
=
"
assignment
"
app_name
=
"
Assignments
"
widget_group3/widget_group3/__pycache__/settings.cpython-39.pyc
View file @
2d56e0c7
No preview for this file type
widget_group3/widget_group3/__pycache__/urls.cpython-39.pyc
View file @
2d56e0c7
No preview for this file type
widget_group3/widget_group3/settings.py
View file @
2d56e0c7
...
@@ -39,7 +39,7 @@ INSTALLED_APPS = [
...
@@ -39,7 +39,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles'
,
'django.contrib.staticfiles'
,
'calendar_app'
,
'calendar_app'
,
'forum'
,
'forum'
,
'
a
ssignments'
,
'
A
ssignments'
,
'dashboard'
,
'dashboard'
,
'announcements'
,
'announcements'
,
]
]
...
...
widget_group3/widget_group3/urls.py
View file @
2d56e0c7
...
@@ -19,7 +19,7 @@ from django.urls import include, path
...
@@ -19,7 +19,7 @@ from django.urls import include, path
urlpatterns
=
[
urlpatterns
=
[
path
(
'calendar/'
,
include
(
'calendar_app.urls'
,
namespace
=
"calendar_app"
)),
path
(
'calendar/'
,
include
(
'calendar_app.urls'
,
namespace
=
"calendar_app"
)),
path
(
'forum/'
,
include
(
'forum.urls'
,
namespace
=
"forum"
)),
path
(
'forum/'
,
include
(
'forum.urls'
,
namespace
=
"forum"
)),
path
(
'
A
ssignments/'
,
include
(
'Assignments.urls'
,
namespace
=
"Assignments"
)),
path
(
'
a
ssignments/'
,
include
(
'Assignments.urls'
,
namespace
=
"Assignments"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'dashboard/'
,
include
(
'dashboard.urls'
,
namespace
=
"dashboard"
)),
path
(
'dashboard/'
,
include
(
'dashboard.urls'
,
namespace
=
"dashboard"
)),
path
(
'announcements/'
,
include
(
'announcements.urls'
,
namespace
=
"announcements"
)),
path
(
'announcements/'
,
include
(
'announcements.urls'
,
namespace
=
"announcements"
)),
...
...
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