Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ejmejilla_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
EJ Mejilla
ejmejilla_reading
Commits
39a03f63
Commit
39a03f63
authored
Mar 28, 2023
by
EJ Mejilla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created the bookshelf app, created models and populated the database
parent
2c7b4b08
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
99 additions
and
1 deletion
+99
-1
__init__.py
ejmejilla_reading/bookshelf/__init__.py
+0
-0
admin.py
ejmejilla_reading/bookshelf/admin.py
+15
-0
apps.py
ejmejilla_reading/bookshelf/apps.py
+6
-0
0001_initial.py
ejmejilla_reading/bookshelf/migrations/0001_initial.py
+38
-0
__init__.py
ejmejilla_reading/bookshelf/migrations/__init__.py
+0
-0
models.py
ejmejilla_reading/bookshelf/models.py
+20
-0
tests.py
ejmejilla_reading/bookshelf/tests.py
+3
-0
urls.py
ejmejilla_reading/bookshelf/urls.py
+9
-0
views.py
ejmejilla_reading/bookshelf/views.py
+5
-0
db.sqlite3
ejmejilla_reading/db.sqlite3
+0
-0
settings.py
ejmejilla_reading/ejmejilla_reading/settings.py
+1
-0
urls.py
ejmejilla_reading/ejmejilla_reading/urls.py
+2
-1
No files found.
ejmejilla_reading/bookshelf/__init__.py
0 → 100644
View file @
39a03f63
ejmejilla_reading/bookshelf/admin.py
0 → 100644
View file @
39a03f63
from
django.contrib
import
admin
from
.models
import
Author
,
Books
class
AuthorAdmin
(
admin
.
ModelAdmin
):
model
=
Author
list_display
=
(
'first_name'
,
'last_name'
,
'age'
,
'nationality'
)
class
BooksAdmin
(
admin
.
ModelAdmin
):
model
=
Books
list_display
=
(
'title'
,
'author'
,
'year_published'
,
'ISBN'
)
admin
.
site
.
register
(
Author
,
AuthorAdmin
)
admin
.
site
.
register
(
Books
,
BooksAdmin
)
# Register your models here.
ejmejilla_reading/bookshelf/apps.py
0 → 100644
View file @
39a03f63
from
django.apps
import
AppConfig
class
BookshelfConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'bookshelf'
ejmejilla_reading/bookshelf/migrations/0001_initial.py
0 → 100644
View file @
39a03f63
# Generated by Django 3.2 on 2023-03-28 09:53
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Author'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'first_name'
,
models
.
CharField
(
blank
=
True
,
max_length
=
200
)),
(
'last_name'
,
models
.
CharField
(
blank
=
True
,
max_length
=
200
)),
(
'age'
,
models
.
IntegerField
(
default
=
0
)),
(
'nationality'
,
models
.
CharField
(
blank
=
True
,
max_length
=
50
)),
(
'bio'
,
models
.
TextField
(
blank
=
True
,
max_length
=
700
)),
],
),
migrations
.
CreateModel
(
name
=
'Books'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'title'
,
models
.
CharField
(
blank
=
True
,
max_length
=
200
)),
(
'publisher'
,
models
.
CharField
(
blank
=
True
,
max_length
=
200
)),
(
'year_published'
,
models
.
IntegerField
(
default
=
0
)),
(
'ISBN'
,
models
.
IntegerField
(
default
=
0
)),
(
'blurb'
,
models
.
TextField
(
blank
=
True
,
max_length
=
1000
)),
(
'author'
,
models
.
ForeignKey
(
blank
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
to
=
'bookshelf.author'
)),
],
),
]
ejmejilla_reading/bookshelf/migrations/__init__.py
0 → 100644
View file @
39a03f63
ejmejilla_reading/bookshelf/models.py
0 → 100644
View file @
39a03f63
from
django.db
import
models
class
Author
(
models
.
Model
):
first_name
=
models
.
CharField
(
max_length
=
200
,
blank
=
True
)
last_name
=
models
.
CharField
(
max_length
=
200
,
blank
=
True
)
age
=
models
.
IntegerField
(
default
=
0
)
nationality
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
)
bio
=
models
.
TextField
(
max_length
=
700
,
blank
=
True
)
def
__str__
(
self
):
return
f
"{self.first_name} {self.last_name}"
class
Books
(
models
.
Model
):
title
=
models
.
CharField
(
max_length
=
200
,
blank
=
True
)
author
=
models
.
ForeignKey
(
Author
,
blank
=
True
,
on_delete
=
models
.
CASCADE
)
publisher
=
models
.
CharField
(
max_length
=
200
,
blank
=
True
)
year_published
=
models
.
IntegerField
(
default
=
0
)
ISBN
=
models
.
IntegerField
(
default
=
0
)
blurb
=
models
.
TextField
(
max_length
=
1000
,
blank
=
True
)
ejmejilla_reading/bookshelf/tests.py
0 → 100644
View file @
39a03f63
from
django.test
import
TestCase
# Create your tests here.
ejmejilla_reading/bookshelf/urls.py
0 → 100644
View file @
39a03f63
# bookshelf/urls.py
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"bookshelf"
ejmejilla_reading/bookshelf/views.py
0 → 100644
View file @
39a03f63
# bookshelf/views.py
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
'Hello World! This came from the index view'
)
ejmejilla_reading/db.sqlite3
0 → 100644
View file @
39a03f63
File added
ejmejilla_reading/ejmejilla_reading/settings.py
View file @
39a03f63
...
...
@@ -39,6 +39,7 @@ INSTALLED_APPS = [
'django.contrib.sessions'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'bookshelf'
,
]
MIDDLEWARE
=
[
...
...
ejmejilla_reading/ejmejilla_reading/urls.py
View file @
39a03f63
...
...
@@ -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
(
'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