Fix href in home.html

parent 0f8bdd92
# Generated by Django 4.1.7 on 2023-04-27 14:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('bookshelf', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='author',
name='age',
field=models.IntegerField(default=0),
),
migrations.AlterField(
model_name='author',
name='bio',
field=models.TextField(default='', max_length=700),
),
migrations.AlterField(
model_name='author',
name='first_name',
field=models.CharField(default='', max_length=50),
),
migrations.AlterField(
model_name='author',
name='last_name',
field=models.CharField(default='', max_length=30),
),
migrations.AlterField(
model_name='author',
name='nationality',
field=models.CharField(default='', max_length=30),
),
migrations.AlterField(
model_name='books',
name='ISBN',
field=models.IntegerField(default=0),
),
migrations.AlterField(
model_name='books',
name='blurb',
field=models.TextField(default='', max_length=200),
),
migrations.AlterField(
model_name='books',
name='publisher',
field=models.CharField(default='', max_length=50),
),
migrations.AlterField(
model_name='books',
name='title',
field=models.CharField(default='', max_length=50),
),
migrations.AlterField(
model_name='books',
name='year_published',
field=models.IntegerField(default=0),
),
]
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<h1>Welcome to Al's Database of <h1>Welcome to Al's Database of
Favorite Books and Authors</h1> Favorite Books and Authors</h1>
<h3>I barely read books, and when I do, they are mostly Japanese Light Novels or Manga. But recently I have been into Webtoons!</h3> <h3>I barely read books, and when I do, they are mostly Japanese Light Novels or Manga. But recently I have been into Webtoons!</h3>
<a href="/bookshelf/books">Books</a> <a href="/bookshelf/authors">Authors</a><br> <a href="/books">Books</a> <a href="/authors">Authors</a><br>
<br> <br>
<a href="/bookshelf/books/add">Add Book</a> <a href = "/bookshelf/authors/add">Add Author</a> <a href="/books/add">Add Book</a> <a href = "/authors/add">Add Author</a>
{% endblock %} {% endblock %}
\ No newline at end of file
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