Commit 65d28b27 authored by Rafa Mendoza's avatar Rafa Mendoza

prepped for gitlab

parent 25fff3c5
Pipeline #3099 failed with stages
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 03: My Favorite Books and Authors
March 28, 2023
I did this lab on my own.
sgd Juan Rafael D. Mendoza, March 28, 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')),
],
),
]
......@@ -23,7 +23,7 @@ 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(max_length=100)
year_published = models.IntegerField()
isbn = models.CharField(max_length=13)
blurb = models.TextField()
......@@ -33,4 +33,4 @@ class Books(models.Model):
)
def get_absolute_url(self):
return reverse('bookshelf:book_details', kwargs={'pk': self.pk})
return reverse('bookshelf:books_details', kwargs={'pk': self.pk})
{% extends 'base.html' %}
{% load static %}
{% block title %} My Favorite Authors{% endblock %}
{% block title %} My Favorite Authors {% endblock %}
{% block content %}
<h1>Rafa's Favorite Authors:</h1>
......
......@@ -5,9 +5,9 @@
{% block content %}
<h1>{{ author.first_name }} {{ author.last_name }}</h1>
<h3>Age: {{ author.age }}</h3>
<h3>Nationality: {{ author.nationality }}</h3>
<h3>Bio: {{ author.bio }}</h3>
<h3>{{ author.age }}</h3>
<h3>{{ author.nationality }}</h3>
<h3>{{ author.bio }}</h3>
<br>
<h2> Books by {{ author.first_name }} {{ author.last_name }} I love:</h2>
<ul>
......
......@@ -2,7 +2,6 @@
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css ">
<title>{% block title %} {% endblock %}</title>
</head>
......
......@@ -6,11 +6,11 @@
{% block content %}
<h1>{{ books.title }}</h1>
<h2>Author: <a href="{{ books.author.get_absolute_url }}">{{ books.author.first_name }} {{ books.author.last_name }}</a></h2>
<h3>Publisher: {{ books.publisher }}</h3>
<h3>Year Published: {{ books.year_published }}</h3>
<h3>ISBN: {{ books.isbn }}</h3>
<p>Blurb: {{ books.blurb }}</p>
<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 %}
......
from django.test import TestCase
# Create your tests here.
from django.urls import path
from .views import (
BooksView, PerBooksView,
home, BooksView, PerBooksView,
AuthorView, PerAuthorView,
)
urlpatterns = [
path('home', home, name='home'),
path('books', BooksView.as_view(), name='books'),
path('books<int:pk>/details', PerBooksView.as_view(), name='book_details'),
path('books<int:pk>/details', PerBooksView.as_view(), name='books_details'),
path('author', AuthorView.as_view(), name='author'),
path('author<int:pk>/details', PerAuthorView.as_view(), name='author_details'),
]
......
......@@ -5,7 +5,7 @@ from django.views.generic.detail import DetailView
def home(request):
return render(request, 'bookshelf/home.html')
return render(request, 'home.html')
class BooksView(ListView):
......
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()
"""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()
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>{% block title %} {% endblock %}</title>
</head>
<body>
<main>
{% block content %} {% endblock %}
</main>
<footer>
<p>{% block footer %} {% endblock %}</p>
</footer>
</body>
</html>
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