From 0b9019c61830c5b0813ea3823bf7d95d7aefa8f6 Mon Sep 17 00:00:00 2001 From: Adeel Khan <muhammad.adeel@arbisoft.com> Date: Tue, 23 Jul 2019 13:10:46 +0500 Subject: [PATCH] Fix wiki template missing endfilter expression --- lms/templates/wiki/includes/cheatsheet.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/templates/wiki/includes/cheatsheet.html b/lms/templates/wiki/includes/cheatsheet.html index cf908b6efce..08bd3ea5c37 100644 --- a/lms/templates/wiki/includes/cheatsheet.html +++ b/lms/templates/wiki/includes/cheatsheet.html @@ -23,7 +23,7 @@ <pre>{% trans "[Article Name](wiki:ArticleName)" as tmsg%}{{tmsg|force_escape}}</pre> </section> <section> - <h3>{% filter force_escape %}{% blocktrans with platform_name=settings.PLATFORM_NAME %}{{ platform_name }} Additions:{% endblocktrans %}{%endfilter}</h3> + <h3>{% filter force_escape %}{% blocktrans with platform_name=settings.PLATFORM_NAME %}{{ platform_name }} Additions:{% endblocktrans %}{% endfilter %}</h3> <pre>$LaTeX {% trans "Math Expression" as tmsg %}{{tmsg|force_escape}}$</pre> </section> </div> -- GitLab