Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
addysalto_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
Mary Adelaide A. Salto
addysalto_reading
Commits
419128f9
Commit
419128f9
authored
Mar 27, 2023
by
Mary Adelaide A. Salto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created bookshelf app
parent
63b9fed1
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
19 additions
and
0 deletions
+19
-0
__init__.cpython-39.pyc
...ing/addysalto_reading/__pycache__/__init__.cpython-39.pyc
+0
-0
settings.cpython-39.pyc
...ing/addysalto_reading/__pycache__/settings.cpython-39.pyc
+0
-0
urls.cpython-39.pyc
...reading/addysalto_reading/__pycache__/urls.cpython-39.pyc
+0
-0
wsgi.cpython-39.pyc
...reading/addysalto_reading/__pycache__/wsgi.cpython-39.pyc
+0
-0
settings.py
addysalto_reading/addysalto_reading/settings.py
+1
-0
__init__.py
addysalto_reading/bookshelf/__init__.py
+0
-0
admin.py
addysalto_reading/bookshelf/admin.py
+3
-0
apps.py
addysalto_reading/bookshelf/apps.py
+6
-0
__init__.py
addysalto_reading/bookshelf/migrations/__init__.py
+0
-0
models.py
addysalto_reading/bookshelf/models.py
+3
-0
tests.py
addysalto_reading/bookshelf/tests.py
+3
-0
views.py
addysalto_reading/bookshelf/views.py
+3
-0
db.sqlite3
addysalto_reading/db.sqlite3
+0
-0
No files found.
addysalto_reading/addysalto_reading/__pycache__/__init__.cpython-39.pyc
0 → 100644
View file @
419128f9
File added
addysalto_reading/addysalto_reading/__pycache__/settings.cpython-39.pyc
0 → 100644
View file @
419128f9
File added
addysalto_reading/addysalto_reading/__pycache__/urls.cpython-39.pyc
0 → 100644
View file @
419128f9
File added
addysalto_reading/addysalto_reading/__pycache__/wsgi.cpython-39.pyc
0 → 100644
View file @
419128f9
File added
addysalto_reading/addysalto_reading/settings.py
View file @
419128f9
...
...
@@ -12,6 +12,7 @@ https://docs.djangoproject.com/en/4.1/ref/settings/
from
pathlib
import
Path
from
dotenv
import
load_dotenv
import
os
load_dotenv
()
...
...
addysalto_reading/bookshelf/__init__.py
0 → 100644
View file @
419128f9
addysalto_reading/bookshelf/admin.py
0 → 100644
View file @
419128f9
from
django.contrib
import
admin
# Register your models here.
addysalto_reading/bookshelf/apps.py
0 → 100644
View file @
419128f9
from
django.apps
import
AppConfig
class
BookshelfConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'bookshelf'
addysalto_reading/bookshelf/migrations/__init__.py
0 → 100644
View file @
419128f9
addysalto_reading/bookshelf/models.py
0 → 100644
View file @
419128f9
from
django.db
import
models
# Create your models here.
addysalto_reading/bookshelf/tests.py
0 → 100644
View file @
419128f9
from
django.test
import
TestCase
# Create your tests here.
addysalto_reading/bookshelf/views.py
0 → 100644
View file @
419128f9
from
django.shortcuts
import
render
# Create your views here.
addysalto_reading/db.sqlite3
0 → 100644
View file @
419128f9
File added
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