Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group 18
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
Rac Gerard Elizaga
widget_group 18
Commits
e2106a49
Commit
e2106a49
authored
Mar 09, 2022
by
Maso Crisostomo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed Announcements folder
parent
e31ca5e5
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
28 deletions
+0
-28
__init__.py
widget_group_18/Announcements/__init__.py
+0
-0
__init__.cpython-310.pyc
...oup_18/Announcements/__pycache__/__init__.cpython-310.pyc
+0
-0
__init__.cpython-38.pyc
...roup_18/Announcements/__pycache__/__init__.cpython-38.pyc
+0
-0
urls.cpython-310.pyc
...t_group_18/Announcements/__pycache__/urls.cpython-310.pyc
+0
-0
urls.cpython-38.pyc
...et_group_18/Announcements/__pycache__/urls.cpython-38.pyc
+0
-0
views.cpython-310.pyc
..._group_18/Announcements/__pycache__/views.cpython-310.pyc
+0
-0
views.cpython-38.pyc
...t_group_18/Announcements/__pycache__/views.cpython-38.pyc
+0
-0
admin.py
widget_group_18/Announcements/admin.py
+0
-3
apps.py
widget_group_18/Announcements/apps.py
+0
-6
__init__.py
widget_group_18/Announcements/migrations/__init__.py
+0
-0
models.py
widget_group_18/Announcements/models.py
+0
-3
tests.py
widget_group_18/Announcements/tests.py
+0
-3
urls.py
widget_group_18/Announcements/urls.py
+0
-7
views.py
widget_group_18/Announcements/views.py
+0
-5
urls.py
widget_group_18/widget_group_18/urls.py
+0
-1
No files found.
widget_group_18/Announcements/__init__.py
deleted
100644 → 0
View file @
e31ca5e5
widget_group_18/Announcements/__pycache__/__init__.cpython-310.pyc
deleted
100644 → 0
View file @
e31ca5e5
File deleted
widget_group_18/Announcements/__pycache__/__init__.cpython-38.pyc
deleted
100644 → 0
View file @
e31ca5e5
File deleted
widget_group_18/Announcements/__pycache__/urls.cpython-310.pyc
deleted
100644 → 0
View file @
e31ca5e5
File deleted
widget_group_18/Announcements/__pycache__/urls.cpython-38.pyc
deleted
100644 → 0
View file @
e31ca5e5
File deleted
widget_group_18/Announcements/__pycache__/views.cpython-310.pyc
deleted
100644 → 0
View file @
e31ca5e5
File deleted
widget_group_18/Announcements/__pycache__/views.cpython-38.pyc
deleted
100644 → 0
View file @
e31ca5e5
File deleted
widget_group_18/Announcements/admin.py
deleted
100644 → 0
View file @
e31ca5e5
from
django.contrib
import
admin
# Register your models here.
widget_group_18/Announcements/apps.py
deleted
100644 → 0
View file @
e31ca5e5
from
django.apps
import
AppConfig
class
AnnouncementsConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'Announcements'
widget_group_18/Announcements/migrations/__init__.py
deleted
100644 → 0
View file @
e31ca5e5
widget_group_18/Announcements/models.py
deleted
100644 → 0
View file @
e31ca5e5
from
django.db
import
models
# Create your models here.
widget_group_18/Announcements/tests.py
deleted
100644 → 0
View file @
e31ca5e5
from
django.test
import
TestCase
# Create your tests here.
widget_group_18/Announcements/urls.py
deleted
100644 → 0
View file @
e31ca5e5
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
''
,
views
.
index
,
name
=
'index'
)
]
\ No newline at end of file
widget_group_18/Announcements/views.py
deleted
100644 → 0
View file @
e31ca5e5
from
django.http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
'This is the Announcement Board!'
)
\ No newline at end of file
widget_group_18/widget_group_18/urls.py
View file @
e2106a49
...
...
@@ -17,7 +17,6 @@ from django.contrib import admin
from
django.urls
import
include
,
path
urlpatterns
=
[
path
(
'Announcements/'
,
include
(
'Announcements.urls'
)),
path
(
'forum/'
,
include
(
'forum.urls'
)),
path
(
'homepage/'
,
include
(
'homepage.urls'
)),
path
(
'assignments/'
,
include
(
'assignments.urls'
)),
...
...
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