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), }