{% extends "base.html" %} {% load i18n %} {% block title %} {{group.svgroupinfo.get_full_name_display}}{% trans ": " %}{{title}} {% endblock %} {% block icon %}news{% endblock %} {% block content %}
{% trans "Latest approved news - with summaries" %}
{% with object_list|slice:":10" as object_list %} {% if object_list %} {% include 'svnews/news_list.inc' %} {% else %}

{% trans "No news items found" %}

{% endif %} {% endwith %}

{% if object_list.count > 10 %}
{% trans "Older approved news" %}
{% with object_list|slice:"10:" as object_list %} {% include 'svnews/news_list_short.inc' %} {% endwith %}
{% endif %} {% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}