{% extends "core/base.html" %} {% load truncate %} {% load i18n %} {% load dates %} {% block title %}{% trans "News" %}{% endblock title %} {% block body %}

{% trans "News" %}

{% if tag %}

{% trans "Filtering tag" %}: {{ tag }}

{% endif %}
{% for item in news_items %}
{{ item.title }}

{{ item.title }}

{{ item.body|striptags|truncatesmart:400 }}

{% empty %}

{% trans "This journal currently has no news items to display." %}

{% endfor %}
{% endblock %}