From 2ffff9d50d03f709ba108e6cc4ec348210c19e73 Mon Sep 17 00:00:00 2001 From: Lukas Winkler Date: Thu, 30 Jul 2020 22:13:08 +0200 Subject: [PATCH] no html entity in description --- acros/templates/acros/detail.html | 2 +- acros/views.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/acros/templates/acros/detail.html b/acros/templates/acros/detail.html index d93eb31..b2e9718 100644 --- a/acros/templates/acros/detail.html +++ b/acros/templates/acros/detail.html @@ -6,7 +6,7 @@ {% endif %} - + diff --git a/acros/views.py b/acros/views.py index 094bc14..c39225b 100644 --- a/acros/views.py +++ b/acros/views.py @@ -52,7 +52,6 @@ class DetailView(generic.DetailView): queryset = Acronym.objects.prefetch_related('wiki_articles') - class EditView(LoginRequiredMixin, SuccessMessageMixin, generic.UpdateView): template_name = 'acros/edit.html' context_object_name = 'acro'