summaryrefslogtreecommitdiff
path: root/app/jrnl/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/jrnl/models.py')
-rw-r--r--app/jrnl/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/jrnl/models.py b/app/jrnl/models.py
index 9045321..c61876a 100644
--- a/app/jrnl/models.py
+++ b/app/jrnl/models.py
@@ -21,6 +21,7 @@ from bs4 import BeautifulSoup
from photos.models import PhotoGallery, LuxImage
from locations.models import Location
from sketches.models import Sketch
+from books.models import Book
from utils.widgets import parse_image, parse_video
from utils.widgets import markdown_to_html
@@ -86,6 +87,7 @@ class Entry(models.Model):
featured_image = models.ForeignKey(LuxImage, on_delete=models.CASCADE, null=True, blank=True)
has_video = models.BooleanField(blank=True, default=False)
field_notes = models.ManyToManyField(Sketch, blank=True)
+ books = models.ManyToManyField(Book, blank=True)
class Meta:
ordering = ('-pub_date',)