diff options
Diffstat (limited to 'core/views/logbooks.py')
-rw-r--r-- | core/views/logbooks.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/views/logbooks.py b/core/views/logbooks.py index 626153c..2f89963 100644 --- a/core/views/logbooks.py +++ b/core/views/logbooks.py @@ -3,7 +3,7 @@ from django.shortcuts import render from django.views.generic.list import ListView import troggle.settings as settings -from troggle.core.models.logbooks import LogbookEntry, PersonLogEntry +from troggle.core.models.logbooks import LogbookEntry, PersonLogEntry, QM from troggle.core.models.survex import SurvexBlock, SurvexFile from troggle.core.models.troggle import Expedition, Person from troggle.core.models.wallets import Wallet @@ -144,6 +144,9 @@ class Expeditions_jsonListView(ListView): template_name = "core/expeditions_json_list.html" model = Expedition +class QMs_jsonListView(ListView): + template_name = "core/QMs_json_list.html" + model = QM def person( request, |