Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
trishamillena_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
Trisha Angel Millena
trishamillena_reading
Commits
9242fcca
Commit
9242fcca
authored
Mar 27, 2023
by
Trisha Angel Millena
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created the bookshelf app
parent
50ccbe2e
Pipeline
#2973
canceled with stages
Changes
12
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
32 additions
and
1 deletion
+32
-1
__init__.py
trishamillena_reading/bookshelf/__init__.py
+0
-0
admin.py
trishamillena_reading/bookshelf/admin.py
+3
-0
apps.py
trishamillena_reading/bookshelf/apps.py
+6
-0
__init__.py
trishamillena_reading/bookshelf/migrations/__init__.py
+0
-0
models.py
trishamillena_reading/bookshelf/models.py
+3
-0
tests.py
trishamillena_reading/bookshelf/tests.py
+3
-0
urls.py
trishamillena_reading/bookshelf/urls.py
+8
-0
views.py
trishamillena_reading/bookshelf/views.py
+6
-0
.env
trishamillena_reading/trishamillena_reading/.env
+1
-0
__init__.cpython-39.pyc
...trishamillena_reading/__pycache__/__init__.cpython-39.pyc
+0
-0
settings.cpython-39.pyc
...trishamillena_reading/__pycache__/settings.cpython-39.pyc
+0
-0
urls.py
trishamillena_reading/trishamillena_reading/urls.py
+2
-1
No files found.
trishamillena_reading/bookshelf/__init__.py
0 → 100644
View file @
9242fcca
trishamillena_reading/bookshelf/admin.py
0 → 100644
View file @
9242fcca
from
django.contrib
import
admin
# Register your models here.
trishamillena_reading/bookshelf/apps.py
0 → 100644
View file @
9242fcca
from
django.apps
import
AppConfig
class
BookshelfConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'bookshelf'
trishamillena_reading/bookshelf/migrations/__init__.py
0 → 100644
View file @
9242fcca
trishamillena_reading/bookshelf/models.py
0 → 100644
View file @
9242fcca
from
django.db
import
models
# Create your models here.
trishamillena_reading/bookshelf/tests.py
0 → 100644
View file @
9242fcca
from
django.test
import
TestCase
# Create your tests here.
trishamillena_reading/bookshelf/urls.py
0 → 100644
View file @
9242fcca
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"bookshelf"
\ No newline at end of file
trishamillena_reading/bookshelf/views.py
0 → 100644
View file @
9242fcca
from
django.http
import
HttResponse
# Create your views here.
def
index
(
request
):
return
HttResponse
(
''
)
\ No newline at end of file
trishamillena_reading/trishamillena_reading/.env
View file @
9242fcca
SECRET_KEY = 'django-insecure-xb@e+7=yk-&gcq$t2dd#z-5c6ptzh+dxo4-*!e+r)$zvz=&nyf'
\ No newline at end of file
trishamillena_reading/trishamillena_reading/__pycache__/__init__.cpython-39.pyc
0 → 100644
View file @
9242fcca
File added
trishamillena_reading/trishamillena_reading/__pycache__/settings.cpython-39.pyc
0 → 100644
View file @
9242fcca
File added
trishamillena_reading/trishamillena_reading/urls.py
View file @
9242fcca
...
...
@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from
django.contrib
import
admin
from
django.urls
import
path
from
django.urls
import
include
,
path
urlpatterns
=
[
path
(
'bookshelf/'
,
include
(
'bookshelf.urls'
,
namespace
=
"bookshelf"
)),
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