Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group 25
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
Andre Matthew Dumandan
widget_group 25
Commits
7378a773
Commit
7378a773
authored
Mar 05, 2022
by
rubbersoulz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created forum app
parent
25ec8981
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
29 additions
and
0 deletions
+29
-0
__init__.py
widget_group_25/forum/__init__.py
+0
-0
admin.py
widget_group_25/forum/admin.py
+3
-0
apps.py
widget_group_25/forum/apps.py
+6
-0
__init__.py
widget_group_25/forum/migrations/__init__.py
+0
-0
models.py
widget_group_25/forum/models.py
+3
-0
tests.py
widget_group_25/forum/tests.py
+3
-0
urls.py
widget_group_25/forum/urls.py
+9
-0
views.py
widget_group_25/forum/views.py
+5
-0
No files found.
widget_group_25/forum/__init__.py
0 → 100644
View file @
7378a773
widget_group_25/forum/admin.py
0 → 100644
View file @
7378a773
from
django.contrib
import
admin
# Register your models here.
widget_group_25/forum/apps.py
0 → 100644
View file @
7378a773
from
django.apps
import
AppConfig
class
ForumConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'forum'
widget_group_25/forum/migrations/__init__.py
0 → 100644
View file @
7378a773
widget_group_25/forum/models.py
0 → 100644
View file @
7378a773
from
django.db
import
models
# Create your models here.
widget_group_25/forum/tests.py
0 → 100644
View file @
7378a773
from
django.test
import
TestCase
# Create your tests here.
widget_group_25/forum/urls.py
0 → 100644
View file @
7378a773
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
'forum'
\ No newline at end of file
widget_group_25/forum/views.py
0 → 100644
View file @
7378a773
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
"Welcome to Widget's 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