summaryrefslogtreecommitdiffstats
path: root/core/views_caves.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@klebos.com>2020-05-28 04:54:53 +0100
committerPhilip Sargent <philip.sargent@klebos.com>2020-05-28 04:54:53 +0100
commit6a755598b2595c4c38d61da5d2c7f608a3905cbe (patch)
treeab35bc47be40efd1c4be5b8fe747cf33e7cca868 /core/views_caves.py
parentdf3917a6771d2e2df3d35fde1b99a6f1d06f9589 (diff)
downloadtroggle-6a755598b2595c4c38d61da5d2c7f608a3905cbe.tar.gz
troggle-6a755598b2595c4c38d61da5d2c7f608a3905cbe.tar.bz2
troggle-6a755598b2595c4c38d61da5d2c7f608a3905cbe.zip
Moved classes to models_caves and fixed imports
Diffstat (limited to 'core/views_caves.py')
-rw-r--r--core/views_caves.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views_caves.py b/core/views_caves.py
index c306461..31f6707 100644
--- a/core/views_caves.py
+++ b/core/views_caves.py
@@ -21,7 +21,7 @@ from django.shortcuts import get_object_or_404, render
import troggle.settings as settings
import troggle.core.models as models
-from troggle.core.models import CaveSlug, Cave, CaveAndEntrance, Survey, Expedition, QM, CaveDescription, EntranceSlug, Entrance, Area, SurvexStation
+from troggle.core.models_caves import CaveSlug, Cave, CaveAndEntrance, Survey, Expedition, QM, CaveDescription, EntranceSlug, Entrance, Area, SurvexStation
from troggle.core.forms import CaveForm, CaveAndEntranceFormSet, VersionControlCommentForm, EntranceForm, EntranceLetterForm
from troggle.helper import login_required_if_public