diff options
author | luxagraf <sng@luxagraf> | 2021-01-15 16:36:00 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-01-15 16:36:00 -0500 |
commit | 776712e1288138f546d105ab621523a2c632638a (patch) | |
tree | 8215fb8e6d024f6f1b1b92bf962334ea61753fd0 /app/locations | |
parent | 47b79fd9d4329e73cef7929ed8f64d9eeb287ae5 (diff) |
proj: updated several views to use utils.LuxDetailView
This allows for a single breadcrumbs template, consolidating code
Diffstat (limited to 'app/locations')
-rw-r--r-- | app/locations/views.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/locations/views.py b/app/locations/views.py index e5d580b..9638b96 100644 --- a/app/locations/views.py +++ b/app/locations/views.py @@ -86,7 +86,6 @@ def map_data(request): class LocationDetail(DetailView): model = Location - template_name = "details/location.html" def get_context_data(self, **kwargs): context = super(LocationDetail, self).get_context_data(**kwargs) |