Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
sharmchua_reading
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
Sharmaine Chua
sharmchua_reading
Commits
f98fbb8e
Commit
f98fbb8e
authored
Mar 28, 2023
by
Sharmaine Chua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initialized and implemented the app bookshelf
parent
1abfc813
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
31 additions
and
1 deletion
+31
-1
__init__.py
sharmchua_reading/bookshelf/__init__.py
+0
-0
admin.py
sharmchua_reading/bookshelf/admin.py
+3
-0
apps.py
sharmchua_reading/bookshelf/apps.py
+6
-0
__init__.py
sharmchua_reading/bookshelf/migrations/__init__.py
+0
-0
models.py
sharmchua_reading/bookshelf/models.py
+3
-0
tests.py
sharmchua_reading/bookshelf/tests.py
+3
-0
urls.py
sharmchua_reading/bookshelf/urls.py
+8
-0
views.py
sharmchua_reading/bookshelf/views.py
+5
-0
settings.py
sharmchua_reading/sharmchua_reading/settings.py
+1
-0
urls.py
sharmchua_reading/sharmchua_reading/urls.py
+2
-1
No files found.
sharmchua_reading/bookshelf/__init__.py
0 → 100644
View file @
f98fbb8e
sharmchua_reading/bookshelf/admin.py
0 → 100644
View file @
f98fbb8e
from
django.contrib
import
admin
# Register your models here.
sharmchua_reading/bookshelf/apps.py
0 → 100644
View file @
f98fbb8e
from
django.apps
import
AppConfig
class
BookshelfConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'bookshelf'
sharmchua_reading/bookshelf/migrations/__init__.py
0 → 100644
View file @
f98fbb8e
sharmchua_reading/bookshelf/models.py
0 → 100644
View file @
f98fbb8e
from
django.db
import
models
# Create your models here.
sharmchua_reading/bookshelf/tests.py
0 → 100644
View file @
f98fbb8e
from
django.test
import
TestCase
# Create your tests here.
sharmchua_reading/bookshelf/urls.py
0 → 100644
View file @
f98fbb8e
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
)
]
app_name
=
'bookshelf'
\ No newline at end of file
sharmchua_reading/bookshelf/views.py
0 → 100644
View file @
f98fbb8e
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
'This is the bookshelf!'
)
sharmchua_reading/sharmchua_reading/settings.py
View file @
f98fbb8e
...
@@ -41,6 +41,7 @@ INSTALLED_APPS = [
...
@@ -41,6 +41,7 @@ INSTALLED_APPS = [
'django.contrib.sessions'
,
'django.contrib.sessions'
,
'django.contrib.messages'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'django.contrib.staticfiles'
,
'bookshelf'
,
]
]
MIDDLEWARE
=
[
MIDDLEWARE
=
[
...
...
sharmchua_reading/sharmchua_reading/urls.py
View file @
f98fbb8e
...
@@ -14,8 +14,9 @@ Including another URLconf
...
@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
"""
from
django.contrib
import
admin
from
django.contrib
import
admin
from
django.urls
import
path
from
django.urls
import
path
,
include
urlpatterns
=
[
urlpatterns
=
[
path
(
'bookshelf/'
,
include
(
'bookshelf.urls'
,
namespace
=
"bookshelf"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'admin/'
,
admin
.
site
.
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