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

{% trans "News" %}

{% if tag %}

Filtering tag: {{ tag }}

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

{{ item.title }}

Posted by {{ item.posted_by.full_name }} {% trans "on" %} {{ item.posted|date:"Y-m-d" }}

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

{% trans "Read More" %}
{% empty %}

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

{% endfor %}
{% endblock body %}