Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_nicsbabes
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
Nics De Vega
midterm_nicsbabes
Commits
b3b723d5
Commit
b3b723d5
authored
Mar 06, 2023
by
Tanya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created app forum
parent
9327ad66
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
29 additions
and
0 deletions
+29
-0
__init__.py
widget_nicsbabes/forum/__init__.py
+0
-0
admin.py
widget_nicsbabes/forum/admin.py
+3
-0
apps.py
widget_nicsbabes/forum/apps.py
+6
-0
__init__.py
widget_nicsbabes/forum/migrations/__init__.py
+0
-0
models.py
widget_nicsbabes/forum/models.py
+3
-0
tests.py
widget_nicsbabes/forum/tests.py
+3
-0
urls.py
widget_nicsbabes/forum/urls.py
+9
-0
views.py
widget_nicsbabes/forum/views.py
+4
-0
urls.py
widget_nicsbabes/widget_nicsbabes/urls.py
+1
-0
No files found.
widget_nicsbabes/forum/__init__.py
0 → 100644
View file @
b3b723d5
widget_nicsbabes/forum/admin.py
0 → 100644
View file @
b3b723d5
from
django.contrib
import
admin
# Register your models here.
widget_nicsbabes/forum/apps.py
0 → 100644
View file @
b3b723d5
from
django.apps
import
AppConfig
class
ForumConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'forum'
widget_nicsbabes/forum/migrations/__init__.py
0 → 100644
View file @
b3b723d5
widget_nicsbabes/forum/models.py
0 → 100644
View file @
b3b723d5
from
django.db
import
models
# Create your models here.
widget_nicsbabes/forum/tests.py
0 → 100644
View file @
b3b723d5
from
django.test
import
TestCase
# Create your tests here.
widget_nicsbabes/forum/urls.py
0 → 100644
View file @
b3b723d5
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"forum"
\ No newline at end of file
widget_nicsbabes/forum/views.py
0 → 100644
View file @
b3b723d5
from
django.shortcuts
import
render
def
index
(
request
):
return
HttpResponse
(
'Hello! This is the Forum.'
)
\ No newline at end of file
widget_nicsbabes/widget_nicsbabes/urls.py
View file @
b3b723d5
...
...
@@ -19,4 +19,5 @@ from django.urls import path, include
urlpatterns
=
[
path
(
'dashboard/'
,
include
(
'dashboard.urls'
,
namespace
=
"dashboard"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
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