{% trans 'Photos' %}


{% list_photos as photos_list limit=6 random=True %} {% for photo in photos_list %}
{{ photo.title }}
{% endfor %}
{% box 15 %}

{% trans 'About the Organization' %}

{% box 16 %}

{% trans 'Latest News' %}

{% list_news as news_list limit=4 %} {% for news_item in news_list|slice:":4" %}

{% blocktrans with headline=news_item.headline|truncatewords:6 %}{{ headline }}{% endblocktrans %}

{% blocktrans with summary=news_item.summary|striptags|truncatewords:"20" %}{{ summary }}{% endblocktrans %}

{% empty %} {% trans 'No news to show now. Start adding news now!' %} {% endfor %}
{% box 17 %}
{% endblock %} {% block extra_body %} {% endblock extra_body %}