Add book lookup via locg

This commit is contained in:
2023-08-31 01:27:37 -04:00
parent 145212fe46
commit f1b1989424
5 changed files with 242 additions and 14 deletions

View File

@ -0,0 +1,20 @@
# Generated by Django 4.1.7 on 2023-08-26 16:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("books", "0016_book_locg_slug_book_summary"),
]
operations = [
migrations.AlterField(
model_name="book",
name="authors",
field=models.ManyToManyField(
blank=True, null=True, to="books.author"
),
),
]