Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gabigarrero_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
Gabriel G. Garrero
gabigarrero_reading
Commits
1052eab2
Commit
1052eab2
authored
Mar 27, 2023
by
Gabriel G. Garrero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created bookshelf app
parent
b209870b
Pipeline
#2972
canceled with stages
Changes
11
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
30 additions
and
2 deletions
+30
-2
__init__.py
gabigarrero_reading/bookshelf/__init__.py
+0
-0
admin.py
gabigarrero_reading/bookshelf/admin.py
+3
-0
apps.py
gabigarrero_reading/bookshelf/apps.py
+6
-0
__init__.py
gabigarrero_reading/bookshelf/migrations/__init__.py
+0
-0
models.py
gabigarrero_reading/bookshelf/models.py
+3
-0
tests.py
gabigarrero_reading/bookshelf/tests.py
+3
-0
urls.py
gabigarrero_reading/bookshelf/urls.py
+8
-0
views.py
gabigarrero_reading/bookshelf/views.py
+4
-0
__init__.cpython-310.pyc
.../gabigarrero_reading/__pycache__/__init__.cpython-310.pyc
+0
-0
settings.cpython-310.pyc
.../gabigarrero_reading/__pycache__/settings.cpython-310.pyc
+0
-0
urls.py
gabigarrero_reading/gabigarrero_reading/urls.py
+3
-2
No files found.
gabigarrero_reading/bookshelf/__init__.py
0 → 100644
View file @
1052eab2
gabigarrero_reading/bookshelf/admin.py
0 → 100644
View file @
1052eab2
from
django.contrib
import
admin
# Register your models here.
gabigarrero_reading/bookshelf/apps.py
0 → 100644
View file @
1052eab2
from
django.apps
import
AppConfig
class
BookshelfConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'bookshelf'
gabigarrero_reading/bookshelf/migrations/__init__.py
0 → 100644
View file @
1052eab2
gabigarrero_reading/bookshelf/models.py
0 → 100644
View file @
1052eab2
from
django.db
import
models
# Create your models here.
gabigarrero_reading/bookshelf/tests.py
0 → 100644
View file @
1052eab2
from
django.test
import
TestCase
# Create your tests here.
gabigarrero_reading/bookshelf/urls.py
0 → 100644
View file @
1052eab2
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"bookshelf"
\ No newline at end of file
gabigarrero_reading/bookshelf/views.py
0 → 100644
View file @
1052eab2
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
''
)
\ No newline at end of file
gabigarrero_reading/gabigarrero_reading/__pycache__/__init__.cpython-310.pyc
0 → 100644
View file @
1052eab2
File added
gabigarrero_reading/gabigarrero_reading/__pycache__/settings.cpython-310.pyc
0 → 100644
View file @
1052eab2
File added
gabigarrero_reading/gabigarrero_reading/urls.py
View file @
1052eab2
...
@@ -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
include
,
path
urlpatterns
=
[
urlpatterns
=
[
path
(
'bookshelf/'
,
include
(
'bookshelf.urls'
,
namespace
=
"bookshelf"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'admin/'
,
admin
.
site
.
urls
),
]
]
\ No newline at end of file
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