Commit 0bf1435f authored by Rafa Mendoza's avatar Rafa Mendoza

Push existing project to GitLab

parents
File added
SECRET_KEY = 'z0yed3&cz-^o!s=y!opf+y$_x2w(wjwn@u3@99!4yu1$zv@b5d'
\ No newline at end of file
Juan Rafael D. Mendoza, 213976, CSCI 40-F
Lab 04: My Favorite Books and Authors v2
April 25, 2023
I did this lab on my own.
sgd Juan Rafael D. Mendoza, April 25, 2023
\ No newline at end of file
from django.contrib import admin
from .models import Author, Books
class AssignmentAdmin(admin.ModelAdmin):
model = Author
list_display = ('first_name', 'last_name', 'age', 'nationality', 'bio',)
search_fields = ('first_name', 'last_name', 'age', 'nationality', 'bio',)
list_filter = ('first_name', 'last_name', 'age', 'nationality', 'bio',)
class CourseAdmin(admin.ModelAdmin):
model = Books
list_display = ('title', 'author', 'publisher', 'year_published', 'isbn', 'blurb', )
search_fields = ('title', 'author', 'publisher', 'year_published', 'isbn', 'blurb', )
list_filter = ('title', 'author', 'publisher', 'year_published', 'isbn', 'blurb', )
admin.site.register(Author, AssignmentAdmin)
admin.site.register(Books, CourseAdmin)
\ No newline at end of file
from django.apps import AppConfig
class BookshelfConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'bookshelf'
# Generated by Django 4.1.7 on 2023-03-28 14: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(max_length=50)),
('last_name', models.CharField(max_length=50)),
('age', models.IntegerField()),
('nationality', models.CharField(max_length=50)),
('bio', models.CharField(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(max_length=125)),
('publisher', models.CharField(max_length=100)),
('year_published', models.IntegerField(max_length=100)),
('isbn', models.CharField(max_length=13)),
('blurb', models.TextField()),
('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='bookshelf.author')),
],
),
]
from django.db import models
from django.urls import reverse
class Author(models.Model):
first_name = models.CharField(max_length=50)
last_name = models.CharField(max_length=50)
age = models.IntegerField()
nationality = models.CharField(max_length=50)
bio = models.CharField(max_length=700)
def __str__(self):
return '''{} {}'''.format(
self.first_name,
self.last_name,
)
def get_absolute_url(self):
return reverse('bookshelf:author_details', kwargs={'pk': self.pk})
class Books(models.Model):
title = models.CharField(max_length=125)
author = models.ForeignKey(Author, on_delete=models.CASCADE)
publisher = models.CharField(max_length=100)
year_published = models.IntegerField()
isbn = models.CharField(max_length=13)
blurb = models.TextField()
def __str__(self):
return '''{}'''.format(
self.title,
)
def get_absolute_url(self):
return reverse('bookshelf:books_details', kwargs={'pk': self.pk})
{% extends 'base.html' %}
{% load static %}
{% block title %} Add New Author {% endblock %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Add Author">
</form>
{% endblock %}
{% block footer %}{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% load static %}
{% block title %} Add New Book {% endblock %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Add Book">
</form>
{% endblock %}
{% block footer %}{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% load static %}
{% block title %} My Favorite Authors {% endblock %}
{% block content %}
<h1>Rafa's Favorite Authors:</h1>
<ul>
{% for author in author_list %}
<li>
<a href="{{author.get_absolute_url}}">
{{ author.first_name }} {{ author.last_name }}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}
{% block footer %}<a href="/bookshelf/home">Home</a> -- <a href="/bookshelf/books">Books</a>{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% load static %}
{% block title %} {{ author.first_name }} {{ author.last_name }} {% endblock %}
{% block content %}
<h1>{{ author.first_name }} {{ author.last_name }}</h1>
<h3>{{ author.age }}</h3>
<h3>{{ author.nationality }}</h3>
<h3>{{ author.bio }}</h3>
<br>
<a href="/bookshelf/author/{{ author.pk }}/edit"><input type="submit" value="Edit Author"></a>
<h2> Books by {{ author.first_name }} {{ author.last_name }} I love:</h2>
<ul>
{% for book in author.books_set.all %}
<li>
<a href="{{ book.get_absolute_url }}">{{ book.title }}</a>
</li>
{% endfor %}
</ul>
{% endblock %}
{% block footer %}<a href="/bookshelf/home">Home</a> -- <a href="/bookshelf/books">Books</a> -- <a href="/bookshelf/author">Authors</a>{% endblock %}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %} {% endblock %}</title>
</head>
<body>
<main>
{% block content %} {% endblock %}
</main>
<footer>
<p>{% block footer %} {% endblock %}</p>
</footer>
</body>
</html>
{% extends 'base.html' %}
{% load static %}
{% block title %} My Favorite Books {% endblock %}
{% block content %}
<h1>Rafa's Favorite Books:</h1>
<ul>
{% for book in books_list %}
<li>
<a href="{{ book.get_absolute_url }}">
{{ book.title }}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}
{% block footer %}<a href="/bookshelf/home">Home</a> -- <a href="/bookshelf/author">Authors</a>{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% load static %}
{% block title %} {{ books.title }} {% endblock %}
{% block content %}
<h1>{{ books.title }}</h1>
<h2><a href="{{ books.author.get_absolute_url }}">{{ books.author.first_name }} {{ books.author.last_name }}</a></h2>
<h3>{{ books.publisher }}</h3>
<h3>{{ books.year_published }}</h3>
<h3>{{ books.isbn }}</h3>
<p>{{ books.blurb }}</p>
{% endblock %}
{% block footer %}<a href="/bookshelf/home">Home</a> -- <a href="/bookshelf/books">Books</a> -- <a href="/bookshelf/author">Authors</a> -- <a href="/bookshelf/books/{{ books.pk }}/edit"><input type="submit" value="Edit Book"></a>{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% load static %}
{% block title %} Edit Author {% endblock %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save Changes">
</form>
{% endblock %}
{% block footer %}{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% load static %}
{% block title %} Edit Book {% endblock %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save Changes">
</form>
{% endblock %}
{% block footer %}{% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% load static %}
{% block title %} My Favorite Books And Authors {% endblock %}
{% block content %}
<h2>Welcome to Rafa's Database of Favorite Books and Authors!</h2>
<p>Not gonna lie, I don't really enjoy reading. Books makes me sleepy...
So, the books that I do enjoy are exceptionally good! Take my word for it. </p>
{% endblock %}
{% block footer %}<a href="/bookshelf/books">Books</a> -- <a href="/bookshelf/author">Authors</a> -- <a href="books/add">Add Book</a> -- <a href="authors/add">Add Author</a></a>{% endblock %}
\ No newline at end of file
from django.test import TestCase
# Create your tests here.
from django.urls import path
from .views import (
home, BooksView, PerBooksView, AddBookView, EditBooksView,
AuthorView, PerAuthorView, AddAuthorView, EditAuthorsView
)
urlpatterns = [
path('home', home, name='home'),
path('books', BooksView.as_view(), name='books'),
path('books/<int:pk>/details', PerBooksView.as_view(), name='books_details'),
path('books/add', AddBookView.as_view(), name='add-book'),
path('books/<int:pk>/edit', EditBooksView.as_view(), name='edit-book'),
path('author', AuthorView.as_view(), name='author'),
path('author<int:pk>/details', PerAuthorView.as_view(), name='author_details'),
path('authors/add', AddAuthorView.as_view(), name='add-author'),
path('author/<int:pk>/edit', EditAuthorsView.as_view(), name='edit-author'),
]
app_name = 'bookshelf'
from django.shortcuts import render
from .models import Author, Books
from django.views.generic.list import ListView
from django.views.generic.detail import DetailView
from django.views.generic.edit import CreateView, UpdateView
def home(request):
return render(request, 'home.html')
class BooksView(ListView):
model = Books
template_name = 'books.html'
class PerBooksView(DetailView):
model = Books
template_name = 'books_details.html'
class AddBookView(CreateView):
model = Books
fields = '__all__'
template_name = 'add-book.html'
class EditBooksView(UpdateView):
model = Books
fields = '__all__'
template_name = 'edit-book.html'
class AuthorView(ListView):
model = Author
template_name = 'author.html'
class PerAuthorView(DetailView):
model = Author
template_name = 'author_details.html'
class AddAuthorView(CreateView):
model = Author
fields = '__all__'
template_name = 'add-author.html'
class EditAuthorsView(UpdateView):
model = Author
fields = '__all__'
template_name = 'edit-author.html'
File added
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
def main():
"""Run administrative tasks."""
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rafa_mendoza_reading.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)
if __name__ == '__main__':
main()
"""
ASGI config for rafa_mendoza_reading project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/4.1/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rafa_mendoza_reading.settings')
application = get_asgi_application()
"""
Django settings for rafa_mendoza_reading project.
Generated by 'django-admin startproject' using Django 4.1.7.
For more information on this file, see
https://docs.djangoproject.com/en/4.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/
"""
import os
from pathlib import Path
from dotenv import load_dotenv
load_dotenv()
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = os.getenv('SECRET_KEY')
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'bookshelf',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'rafa_mendoza_reading.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'rafa_mendoza_reading.wsgi.application'
# Database
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
# Password validation
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/4.1/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/4.1/howto/static-files/
STATIC_URL = 'static/'
# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
"""rafa_mendoza_reading URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/4.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('bookshelf/', include('bookshelf.urls', namespace="bookshelf")),
path('admin/', admin.site.urls),
]
"""
WSGI config for rafa_mendoza_reading project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rafa_mendoza_reading.settings')
application = get_wsgi_application()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment