{% load i18n %} {% load static %} {% load reviews %} {% load thumbnail eucs_platform_tags %} {% for project in projects %}
image for {{project.name}}
{% if project.featured %}
Featured
{% else %}
 
{% endif %} {% if project.mainOrganisation %} {{ project.mainOrganisation.country.name }} {% endif %} {% for topic in project.topic.translated_sorted_by_text %} {% if forloop.counter < 3 %} {{ topic | truncatewords_html:20 }} {% elif forloop.counter < 4 %} ... {% endif %} {% endfor %} {% for keyword in project.keywords.all %} {% if forloop.counter < 3 %} {{ keyword | truncatewords_html:20 }} {% elif forloop.counter < 4 %} ... {% endif %} {% endfor %}
{{project.name | truncatewords_html:10 }}

{{ project.description | safe | truncate_summary:30 }}

{% endfor %} {% if 'projects' in request.get_full_path %}
{% include "paginator.html" %}
{% endif %}