view sat_templates/templates/bulma/error/base.html @ 363:cddac8502c4b

chat/message: fix urlize escaping on nunjucks: Nunjucks imply to use `safe` when using `urlize`, while Jinja2 doesn't. Esacaping and safe filter are added so that `urlize` can work with both engines.
author Goffi <goffi@goffi.org>
date Wed, 28 Jun 2023 10:40:53 +0200
parents f7ffdd1aed4c
children
line wrap: on
line source

{% extends 'base/base.html' %}

{% block title %}{% trans %}Error {{error_code}}{% endtrans %}{% endblock %}
{% block body %}
{% trans %}An error occured while trying to access the resource.{% endtrans %}
{% endblock body %}
{% block footer %}{% endblock %}