Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nicsdevega_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
Nics De Vega
nicsdevega_reading
Commits
9553a4b5
Commit
9553a4b5
authored
Mar 27, 2023
by
Nics De Vega
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created app bookshelf
parent
5efeaa1d
Pipeline
#2962
failed with stages
Changes
10
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
31 additions
and
1 deletion
+31
-1
__init__.py
nicsdevega_reading/bookshelf/__init__.py
+0
-0
admin.py
nicsdevega_reading/bookshelf/admin.py
+3
-0
apps.py
nicsdevega_reading/bookshelf/apps.py
+6
-0
__init__.py
nicsdevega_reading/bookshelf/migrations/__init__.py
+0
-0
models.py
nicsdevega_reading/bookshelf/models.py
+3
-0
tests.py
nicsdevega_reading/bookshelf/tests.py
+3
-0
urls.py
nicsdevega_reading/bookshelf/urls.py
+8
-0
views.py
nicsdevega_reading/bookshelf/views.py
+5
-0
settings.py
nicsdevega_reading/nicsdevega_reading/settings.py
+1
-0
urls.py
nicsdevega_reading/nicsdevega_reading/urls.py
+2
-1
No files found.
nicsdevega_reading/bookshelf/__init__.py
0 → 100644
View file @
9553a4b5
nicsdevega_reading/bookshelf/admin.py
0 → 100644
View file @
9553a4b5
from
django.contrib
import
admin
# Register your models here.
nicsdevega_reading/bookshelf/apps.py
0 → 100644
View file @
9553a4b5
from
django.apps
import
AppConfig
class
BookshelfConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'bookshelf'
nicsdevega_reading/bookshelf/migrations/__init__.py
0 → 100644
View file @
9553a4b5
nicsdevega_reading/bookshelf/models.py
0 → 100644
View file @
9553a4b5
from
django.db
import
models
# Create your models here.
nicsdevega_reading/bookshelf/tests.py
0 → 100644
View file @
9553a4b5
from
django.test
import
TestCase
# Create your tests here.
nicsdevega_reading/bookshelf/urls.py
0 → 100644
View file @
9553a4b5
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
)
]
app_name
=
'bookshelf'
nicsdevega_reading/bookshelf/views.py
0 → 100644
View file @
9553a4b5
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
"Hello World! This is my bookshelf!"
)
\ No newline at end of file
nicsdevega_reading/nicsdevega_reading/settings.py
View file @
9553a4b5
...
...
@@ -41,6 +41,7 @@ INSTALLED_APPS = [
'django.contrib.sessions'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'bookshelf'
,
]
MIDDLEWARE
=
[
...
...
nicsdevega_reading/nicsdevega_reading/urls.py
View file @
9553a4b5
...
...
@@ -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
path
,
include
urlpatterns
=
[
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'bookshelf'
,
include
(
'bookshelf.urls'
,
namespace
=
"bookshelf"
)),
]
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