1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00

no html entity in description

This commit is contained in:
Lukas Winkler 2020-07-30 22:13:08 +02:00
parent 900ce5ada4
commit 2ffff9d50d
Signed by: lukas
GPG key ID: 54DE4D798D244853
2 changed files with 1 additions and 2 deletions

View file

@ -6,7 +6,7 @@
<!-- Only embed katex if there is an equation on the page --> <!-- Only embed katex if there is an equation on the page -->
<link rel="stylesheet" href="{% static "libs/katex.min.css" %}"> <link rel="stylesheet" href="{% static "libs/katex.min.css" %}">
{% endif %} {% endif %}
<meta property="og:title" content="{{ acro.name }}: {{ acro.full_name }} &dash; Acronomy"/> <meta property="og:title" content="{{ acro.name }}: {{ acro.full_name }} - Acronomy"/>
<meta property="og:type" content="website"/> <meta property="og:type" content="website"/>
<meta property="og:url" content="https://acronomy.lw1.at{{ acro.get_absolute_url }}"/> <meta property="og:url" content="https://acronomy.lw1.at{{ acro.get_absolute_url }}"/>
<meta property="og:locale" content="en_GB"/> <meta property="og:locale" content="en_GB"/>

View file

@ -52,7 +52,6 @@ class DetailView(generic.DetailView):
queryset = Acronym.objects.prefetch_related('wiki_articles') queryset = Acronym.objects.prefetch_related('wiki_articles')
class EditView(LoginRequiredMixin, SuccessMessageMixin, generic.UpdateView): class EditView(LoginRequiredMixin, SuccessMessageMixin, generic.UpdateView):
template_name = 'acros/edit.html' template_name = 'acros/edit.html'
context_object_name = 'acro' context_object_name = 'acro'