diff --git a/vrobbler/apps/books/migrations/0019_alter_book_authors.py b/vrobbler/apps/books/migrations/0019_alter_book_authors.py new file mode 100644 index 0000000..47f0be8 --- /dev/null +++ b/vrobbler/apps/books/migrations/0019_alter_book_authors.py @@ -0,0 +1,18 @@ +# Generated by Django 4.1.7 on 2023-11-21 23:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("books", "0018_author_locg_slug"), + ] + + operations = [ + migrations.AlterField( + model_name="book", + name="authors", + field=models.ManyToManyField(blank=True, to="books.author"), + ), + ] diff --git a/vrobbler/templates/base.html b/vrobbler/templates/base.html index 41b540a..b3b785a 100644 --- a/vrobbler/templates/base.html +++ b/vrobbler/templates/base.html @@ -222,6 +222,12 @@ Charts +