aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/views.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-09-15 17:11:50 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-09-15 17:11:50 +0100
commit38c4277991492226b5474481fa6e714b114ae427 (patch)
treeb1c0e25727b3ff984ea94ddf84b74bc1d17bfaa1 /ctrack/organisations/views.py
parent3c6f2c66524f07d7bb482da187f0387e3cf147d3 (diff)
Reformatting in Pycharm
Diffstat (limited to 'ctrack/organisations/views.py')
-rw-r--r--ctrack/organisations/views.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ctrack/organisations/views.py b/ctrack/organisations/views.py
index 1993c59..4beff89 100644
--- a/ctrack/organisations/views.py
+++ b/ctrack/organisations/views.py
@@ -1,17 +1,17 @@
-from typing import Any, Dict
+from typing import Any
from django.contrib.auth.mixins import LoginRequiredMixin, PermissionRequiredMixin
-from django.shortcuts import render, get_object_or_404
from django.db import transaction
from django.http import HttpResponseRedirect
+from django.shortcuts import render, get_object_or_404
from django.urls import reverse, reverse_lazy
from django.views.generic import CreateView, DetailView, FormView, ListView
+from ctrack.caf.models import EssentialService, CAF
from ctrack.register.models import EngagementEvent
-
from .forms import AddressInlineFormSet, IncidentReportForm, OrganisationCreateForm
from .models import IncidentReport, Organisation, Person
-from ctrack.caf.models import EssentialService, CAF
+
# TODO - needs a permission on this view
def essential_service_detail(request, pk):