Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_CtrlF
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
Fritzie Dianne Del Pilar
midterm_CtrlF
Commits
82ca68ad
Commit
82ca68ad
authored
Mar 05, 2023
by
Lance Cedric Tan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added app to settings and urls
parent
6ef1f370
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
2 deletions
+13
-2
.gitignore
.gitignore
+1
-0
.DS_Store
widget_CtrlF/.DS_Store
+0
-0
urls.py
widget_CtrlF/forum/urls.py
+9
-0
settings.py
widget_CtrlF/widget_CtrlF/settings.py
+1
-0
urls.py
widget_CtrlF/widget_CtrlF/urls.py
+2
-2
No files found.
.gitignore
0 → 100644
View file @
82ca68ad
widget_CtrlF/.DS_Store
widget_CtrlF/.DS_Store
View file @
82ca68ad
No preview for this file type
widget_CtrlF/forum/urls.py
0 → 100644
View file @
82ca68ad
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"forum"
\ No newline at end of file
widget_CtrlF/widget_CtrlF/settings.py
View file @
82ca68ad
...
...
@@ -43,6 +43,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles'
,
'dashboard'
,
'announcement_board'
,
'forum'
,
]
MIDDLEWARE
=
[
...
...
widget_CtrlF/widget_CtrlF/urls.py
View file @
82ca68ad
...
...
@@ -14,11 +14,11 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from
django.contrib
import
admin
from
django.urls
import
include
,
path
from
django.urls
import
path
,
include
urlpatterns
=
[
path
(
'dashboard/'
,
include
(
'dashboard.urls'
,
namespace
=
"dashboard"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'announcement_board/'
,
include
(
'announcement_board.urls'
,
namespace
=
'announcement_board'
)),
path
(
'dashboard/'
,
include
(
'dashboard.urls'
,
namespace
=
"dashboard"
)),
path
(
'forum/'
,
include
(
'forum.urls'
,
namespace
=
"forum"
)),
]
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