Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
calvincruz_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
Calvin Josh Cruz
calvincruz_reading
Commits
26c204a3
Commit
26c204a3
authored
Mar 29, 2023
by
karin-kurusu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created application "bookshelf"
parent
2fce7ca5
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
19 additions
and
0 deletions
+19
-0
__init__.py
calvincruz_reading/bookshelf/__init__.py
+0
-0
admin.py
calvincruz_reading/bookshelf/admin.py
+3
-0
apps.py
calvincruz_reading/bookshelf/apps.py
+6
-0
__init__.py
calvincruz_reading/bookshelf/migrations/__init__.py
+0
-0
models.py
calvincruz_reading/bookshelf/models.py
+3
-0
tests.py
calvincruz_reading/bookshelf/tests.py
+3
-0
views.py
calvincruz_reading/bookshelf/views.py
+3
-0
settings.py
calvincruz_reading/calvincruz_reading/settings.py
+1
-0
No files found.
calvincruz_reading/bookshelf/__init__.py
0 → 100644
View file @
26c204a3
calvincruz_reading/bookshelf/admin.py
0 → 100644
View file @
26c204a3
from
django.contrib
import
admin
# Register your models here.
calvincruz_reading/bookshelf/apps.py
0 → 100644
View file @
26c204a3
from
django.apps
import
AppConfig
class
BookshelfConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'bookshelf'
calvincruz_reading/bookshelf/migrations/__init__.py
0 → 100644
View file @
26c204a3
calvincruz_reading/bookshelf/models.py
0 → 100644
View file @
26c204a3
from
django.db
import
models
# Create your models here.
calvincruz_reading/bookshelf/tests.py
0 → 100644
View file @
26c204a3
from
django.test
import
TestCase
# Create your tests here.
calvincruz_reading/bookshelf/views.py
0 → 100644
View file @
26c204a3
from
django.shortcuts
import
render
# Create your views here.
calvincruz_reading/calvincruz_reading/settings.py
View file @
26c204a3
...
@@ -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
=
[
...
...
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