diff options
author | luxagraf <sng@luxagraf.net> | 2020-08-06 15:09:05 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-08-06 15:09:05 -0400 |
commit | 647176b83d2316a8f68613adac18e579dac6e2b1 (patch) | |
tree | 0791939ca747a4ee31f8bd057985a33997591aba /app/utils | |
parent | 5a29df9e2ab7c0d80296907fcb61dccfff1fd008 (diff) |
updated to Django 3.1
Diffstat (limited to 'app/utils')
-rw-r--r-- | app/utils/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/utils/views.py b/app/utils/views.py index d4c9eae..db8cb35 100644 --- a/app/utils/views.py +++ b/app/utils/views.py @@ -4,7 +4,6 @@ from django.urls import reverse from django.http import Http404, HttpResponse from django.views.generic import ListView, DetailView from django.apps import apps -from django.shortcuts import render_to_response from django.shortcuts import render from django.template import RequestContext @@ -16,7 +15,8 @@ BREADCRUMBS = { 'SrcPost':'SRC', 'Book':'Book Notes', 'Entry':'Jrnl', - 'NewsletterMailing':'lttr' + 'NewsletterMailing':'lttr', + 'LuxImage':'lttr' } class PaginatedListView(ListView): |