Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
red_brick_board
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
1
Merge Requests
1
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
Ciella Francisco
red_brick_board
Commits
0e2c0f4d
Commit
0e2c0f4d
authored
Mar 12, 2024
by
Ciella Francisco
😵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created the event_management app, included dummy views, and configured urls
parent
c266ea8e
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
29 additions
and
0 deletions
+29
-0
__init__.py
redbrickboard/event_management/__init__.py
+0
-0
admin.py
redbrickboard/event_management/admin.py
+3
-0
apps.py
redbrickboard/event_management/apps.py
+6
-0
models.py
redbrickboard/event_management/models.py
+3
-0
tests.py
redbrickboard/event_management/tests.py
+3
-0
urls.py
redbrickboard/event_management/urls.py
+7
-0
views.py
redbrickboard/event_management/views.py
+5
-0
settings.py
redbrickboard/redbrickboard/settings.py
+1
-0
urls.py
redbrickboard/redbrickboard/urls.py
+1
-0
No files found.
redbrickboard/event_management/__init__.py
0 → 100644
View file @
0e2c0f4d
redbrickboard/event_management/admin.py
0 → 100644
View file @
0e2c0f4d
from
django.contrib
import
admin
# Register your models here.
redbrickboard/event_management/apps.py
0 → 100644
View file @
0e2c0f4d
from
django.apps
import
AppConfig
class
EventManagementConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'event_management'
redbrickboard/event_management/models.py
0 → 100644
View file @
0e2c0f4d
from
django.db
import
models
# Create your models here.
redbrickboard/event_management/tests.py
0 → 100644
View file @
0e2c0f4d
from
django.test
import
TestCase
# Create your tests here.
redbrickboard/event_management/urls.py
0 → 100644
View file @
0e2c0f4d
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
)]
app_name
=
"event_management"
\ No newline at end of file
redbrickboard/event_management/views.py
0 → 100644
View file @
0e2c0f4d
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
'Hello World! This came from the index view.'
)
\ No newline at end of file
redbrickboard/redbrickboard/settings.py
View file @
0e2c0f4d
...
@@ -42,6 +42,7 @@ INSTALLED_APPS = [
...
@@ -42,6 +42,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles'
,
'django.contrib.staticfiles'
,
'accounts'
,
'accounts'
,
'eventcatalog'
,
'eventcatalog'
,
'event_management'
,
'bootstrap5'
,
'bootstrap5'
,
]
]
...
...
redbrickboard/redbrickboard/urls.py
View file @
0e2c0f4d
...
@@ -21,5 +21,6 @@ from django.views.generic.base import TemplateView
...
@@ -21,5 +21,6 @@ from django.views.generic.base import TemplateView
urlpatterns
=
[
urlpatterns
=
[
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
"accounts/"
,
include
(
"accounts.urls"
),
name
=
"accounts"
),
path
(
"accounts/"
,
include
(
"accounts.urls"
),
name
=
"accounts"
),
path
(
"event_management/"
,
include
(
"event_management.urls"
,
namespace
=
"event_management"
)),
path
(
""
,
include
(
"eventcatalog.urls"
),
name
=
"index"
),
path
(
""
,
include
(
"eventcatalog.urls"
),
name
=
"index"
),
]
]
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