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
c6d6a4ca
Commit
c6d6a4ca
authored
Apr 13, 2024
by
Ciella Francisco
😵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deleted eventcatalog application
parent
1d50dd71
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1 addition
and
40 deletions
+1
-40
admin.py
redbrickboard/eventcatalog/admin.py
+0
-3
apps.py
redbrickboard/eventcatalog/apps.py
+0
-6
models.py
redbrickboard/eventcatalog/models.py
+0
-3
index.html
redbrickboard/eventcatalog/templates/eventcatalog/index.html
+0
-7
tests.py
redbrickboard/eventcatalog/tests.py
+0
-3
urls.py
redbrickboard/eventcatalog/urls.py
+0
-9
views.py
redbrickboard/eventcatalog/views.py
+0
-6
settings.py
redbrickboard/redbrickboard/settings.py
+0
-1
urls.py
redbrickboard/redbrickboard/urls.py
+1
-2
No files found.
redbrickboard/eventcatalog/admin.py
deleted
100644 → 0
View file @
1d50dd71
from
django.contrib
import
admin
# Register your models here.
redbrickboard/eventcatalog/apps.py
deleted
100644 → 0
View file @
1d50dd71
from
django.apps
import
AppConfig
class
EventcatalogConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'eventcatalog'
redbrickboard/eventcatalog/models.py
deleted
100644 → 0
View file @
1d50dd71
from
django.db
import
models
# Create your models here.
redbrickboard/eventcatalog/templates/eventcatalog/index.html
deleted
100644 → 0
View file @
1d50dd71
{% extends "base.html" %}
{% block content %}
{% endblock %}
\ No newline at end of file
redbrickboard/eventcatalog/tests.py
deleted
100644 → 0
View file @
1d50dd71
from
django.test
import
TestCase
# Create your tests here.
redbrickboard/eventcatalog/urls.py
deleted
100644 → 0
View file @
1d50dd71
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
''
,
views
.
index
,
name
=
"index"
),
]
app_name
=
'event_catalog'
\ No newline at end of file
redbrickboard/eventcatalog/views.py
deleted
100644 → 0
View file @
1d50dd71
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
render
(
request
,
"eventcatalog/index.html"
)
\ No newline at end of file
redbrickboard/redbrickboard/settings.py
View file @
c6d6a4ca
...
@@ -42,7 +42,6 @@ INSTALLED_APPS = [
...
@@ -42,7 +42,6 @@ INSTALLED_APPS = [
'django.contrib.staticfiles'
,
'django.contrib.staticfiles'
,
'home'
,
'home'
,
'accounts'
,
'accounts'
,
'eventcatalog'
,
'event_management'
,
'event_management'
,
'bootstrap5'
,
'bootstrap5'
,
]
]
...
...
redbrickboard/redbrickboard/urls.py
View file @
c6d6a4ca
...
@@ -24,8 +24,7 @@ urlpatterns = [
...
@@ -24,8 +24,7 @@ urlpatterns = [
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
"accounts/"
,
include
(
"accounts.urls"
,
namespace
=
"accounts"
)),
path
(
"accounts/"
,
include
(
"accounts.urls"
,
namespace
=
"accounts"
)),
path
(
"events/"
,
include
(
"event_management.urls"
,
namespace
=
'event_management'
)),
path
(
"events/"
,
include
(
"event_management.urls"
,
namespace
=
'event_management'
)),
path
(
"eventcatalog/"
,
include
(
"eventcatalog.urls"
,
namespace
=
"event_catalog"
)),
path
(
"home/"
,
include
(
"home.urls"
)),
path
(
""
,
include
(
"home.urls"
)),
]
]
urlpatterns
+=
static
(
settings
.
MEDIA_URL
,
document_root
=
settings
.
MEDIA_ROOT
)
urlpatterns
+=
static
(
settings
.
MEDIA_URL
,
document_root
=
settings
.
MEDIA_ROOT
)
\ 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