diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-10-18 17:07:46 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-10-18 17:07:46 +0100 |
commit | 95ce6e5712e2f325e21f091b529bd961873c8626 (patch) | |
tree | 46f4b2e9edb44cca390dd1c5956397bdc3acf715 /ctrack/organisations/views.py | |
parent | dbc2cf0662323abadd08b0d7eb6746905466017d (diff) |
better representation of list of single_datetime_events in org detail page
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/organisations/views.py b/ctrack/organisations/views.py index ea6aa14..e8affdb 100644 --- a/ctrack/organisations/views.py +++ b/ctrack/organisations/views.py @@ -3,7 +3,7 @@ from typing import Any from django.contrib.auth.mixins import LoginRequiredMixin, PermissionRequiredMixin from django.db import transaction -from django.db.models import Q +from django.db.models import Q, QuerySet from django.http import HttpResponseRedirect from django.shortcuts import render, get_object_or_404 from django.urls import reverse, reverse_lazy |