Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_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
Jonathan Talbot
widget_group3
Commits
c183186a
Commit
c183186a
authored
Mar 09, 2022
by
Jonathan Talbot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
homepage widget
parent
bc34da8d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
5 deletions
+14
-5
README.md
README.md
+8
-5
urls.cpython-310.pyc
widget_group3/widget_group3/__pycache__/urls.cpython-310.pyc
+0
-0
views.cpython-310.pyc
...et_group3/widget_group3/__pycache__/views.cpython-310.pyc
+0
-0
urls.py
widget_group3/widget_group3/urls.py
+2
-0
views.py
widget_group3/widget_group3/views.py
+4
-0
No files found.
README.md
View file @
c183186a
Group 3 - Lab 1: Widget
#
Group 3 - Lab 1: Widget
Jonathan Talbot
### Jonathan Talbot - Homepage
Joshua De Vera
Isaiah Flores
### Joshua De Vera - Announcement Board
Giancarlo De Torres
\ No newline at end of file
### Isaiah Flores - Forum
### Giancarlo De Torres - Assignments
\ No newline at end of file
widget_group3/widget_group3/__pycache__/urls.cpython-310.pyc
View file @
c183186a
No preview for this file type
widget_group3/widget_group3/__pycache__/views.cpython-310.pyc
0 → 100644
View file @
c183186a
File added
widget_group3/widget_group3/urls.py
View file @
c183186a
...
@@ -15,7 +15,9 @@ Including another URLconf
...
@@ -15,7 +15,9 @@ Including another URLconf
"""
"""
from
django.contrib
import
admin
from
django.contrib
import
admin
from
django.urls
import
path
from
django.urls
import
path
from
.views
import
homepage
urlpatterns
=
[
urlpatterns
=
[
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'homepage/'
,
homepage
,
name
=
'homepage'
),
]
]
widget_group3/widget_group3/views.py
0 → 100644
View file @
c183186a
from
django.http
import
HttpResponse
def
homepage
(
request
):
return
HttpResponse
(
'Welcome to Widget!'
)
\ No newline at end of file
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