{% extends "catalogue/base.html" %} {% load i18n %} {% load thumbnail catalogue_files %} {% block inner_content %}

{% trans "Upcoming resources" %}

{% for doc in objects_list %}
{% if doc.meta.cover_url %} {% thumbnail doc.meta.cover_url|as_media_for:doc "180x120" crop="center" format="PNG" as th %} {% endthumbnail %} {% elif doc.owner_organization.logo %} {% thumbnail doc.owner_organization.logo "160x100" format="PNG" padding=True as th %} {% endthumbnail %} {% endif %}
{{ doc.meta.title }}
{% if doc.meta.audience %} {% trans "Audience" %}: {{ doc.meta.audience }}
{% endif %} {% trans "Owner" %}: {{ doc.owner_organization|default:"" }} {{ doc.owner_user.first_name }} {{ doc.owner_user.last_name }}
{% endfor %} {% endblock %}