From a89fb23d33be5747995c46b0805429031542ec79 Mon Sep 17 00:00:00 2001 From: Skia Date: Sat, 10 Jun 2017 20:03:37 +0200 Subject: [PATCH] That's just a ridiculous little fix Signed-off-by: Skia --- core/views/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/views/forms.py b/core/views/forms.py index 68fcc493..cab656ea 100644 --- a/core/views/forms.py +++ b/core/views/forms.py @@ -78,7 +78,7 @@ class MarkdownInput(Textarea): def render(self, name, value, attrs=None): output = '

%(help_text)s

'\ '
%(content)s
' % { - 'syntax_url': Page.get_page_by_full_name(settings.SITH_CORE_PAGE_SYNTAX), + 'syntax_url': Page.get_page_by_full_name(settings.SITH_CORE_PAGE_SYNTAX).get_absolute_url(), 'help_text': _("Help on the syntax"), 'content': super(MarkdownInput, self).render(name, value, attrs), }