Hello, I've been trying to upgraze a mezzanine/django application form python 2.7/Mezzanine 4.3.1 to python 3.7/mezzanine 5.0.0.
How should I update the attached file richtextpage.html that does not work in python 3.7/mezzanine 5.0.0 any more ? When running my application I get the error "django.template.exceptions.TemplateSyntaxError: Invalid filter: 'richtext_filter'" Br Jaana -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mezzanine-users/83989a54-79c0-4baf-bc99-3bfa7f6228c5n%40googlegroups.com.{% extends "pages/page.html" %} {% load mezzanine_tags %} {% block base %} {% editable_loader %} {% if has_site_permission %} {% include 'includes/editable_toolbar.html' %} {% endif %} {% editable page.richtextpage.content %}
{{ page.richtextpage.content|richtext_filters|safe }}
{% endeditable %}
{% endblock %}
{% extends "base.html" %}
{% load mezzanine_tags keyword_tags %}
{% block meta_title %}
{{ page.title }}{{ news.title }}{{ registerdescpage.title }} |
{% if page.basicpage.lang == "en" or news.lang == "en" or page.registerdescpage.lang == "en" %}
myOrg
{% elif page.basicpage.lang == "sv" or news.lang == "sv" or page.registerdescpage.lang == "sv" %}
myOrg
{% else %}
myOrg
{% endif %}
{% endblock %}
{% block meta_keywords %}{% metablock %}
{% keywords_for page as keywords %}
{% for keyword in keywords %}
{% if not forloop.first %}, {% endif %}
{{ keyword }}
{% endfor %}
{% endmetablock %}{% endblock %}
{% block meta_description %}{% metablock %}
{{ page.description }}
{% endmetablock %}{% endblock %}
{% block tk_2 %}{% metablock %}
{{ basicpage.tk_aiheluokitus }}
{% endmetablock %}{% endblock %}
{% block title %}
{% editable page.title %}{{ page.title }}{% endeditable %}
{% endblock %}
{% block main %}
{% endblock %}
