summaryrefslogtreecommitdiffstats
path: root/core/views/other.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-01-29 16:47:46 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-01-29 16:47:46 +0000
commit5639435058191221687cc7bb2d0b64f0531d9164 (patch)
treeb2709bda6bf4c187321387158bdcb57a5af97604 /core/views/other.py
parent432be660a4782183777a74bec54082e6edf19542 (diff)
downloadtroggle-5639435058191221687cc7bb2d0b64f0531d9164.tar.gz
troggle-5639435058191221687cc7bb2d0b64f0531d9164.tar.bz2
troggle-5639435058191221687cc7bb2d0b64f0531d9164.zip
Moved Logbooks to separate model file
Diffstat (limited to 'core/views/other.py')
-rw-r--r--core/views/other.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/views/other.py b/core/views/other.py
index 0e02180..70bdfa4 100644
--- a/core/views/other.py
+++ b/core/views/other.py
@@ -12,7 +12,8 @@ from django.shortcuts import render
from django.template import Context, loader
from django.urls import reverse
-from troggle.core.models.caves import QM, Cave, LogbookEntry, PersonTrip
+from troggle.core.models.caves import Cave
+from troggle.core.models.logbooks import QM, LogbookEntry, PersonTrip
from troggle.core.models.survex import DrawingFile
# from databaseReset import reinit_db # don't do this. databaseRest runs code *at import time*
from troggle.core.models.troggle import Expedition, Person, PersonExpedition