Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_appappandaway
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
Ian Rafael T. Aragoza
midterm_appappandaway
Commits
406218d3
Commit
406218d3
authored
Mar 04, 2023
by
Ian Rafael T. Aragoza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated urls.py and views.py of all three apps.
parent
cdeb5524
Pipeline
#2929
failed with stages
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
0 deletions
+28
-0
urls.py
widget_appappandaway/announcementboard/urls.py
+10
-0
views.py
widget_appappandaway/announcementboard/views.py
+4
-0
urls.py
widget_appappandaway/forum/urls.py
+10
-0
views.py
widget_appappandaway/forum/views.py
+4
-0
No files found.
widget_appappandaway/announcementboard/urls.py
0 → 100644
View file @
406218d3
from
django.shortcuts
import
render
from
django.urls
import
path
from
.views
import
index
# Create your views here.
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"announcementboard"
\ No newline at end of file
widget_appappandaway/announcementboard/views.py
View file @
406218d3
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
'Announcement Board app.'
)
widget_appappandaway/forum/urls.py
0 → 100644
View file @
406218d3
from
django.shortcuts
import
render
from
django.urls
import
path
from
.views
import
index
# Create your views here.
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"forum"
\ No newline at end of file
widget_appappandaway/forum/views.py
View file @
406218d3
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
'Forum app.'
)
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