This commit is contained in:
Ross
2022-04-02 22:38:55 +01:00
parent 44af9b9915
commit 76020a3fa3
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1057,11 +1057,11 @@ class CollectionView(LoginRequiredMixin, SingleTableMixin, FilterView):
filterset_class = CaseCollectionFilter
def collection_detail_view(request, pk):
def collection_detail(request, pk):
collection = get_object_or_404(CaseCollection, pk=pk)
return render(
request, "atlas/collection_detail_view.html", {"collection": collection}
request, "atlas/collection_detail.html", {"collection": collection}
)
def collection_take_overview(request, pk, cid, passcode):