{% extends "/base.html" %} {% set active_page = "projects" %} {% import "projects/_helpers.html" as helper %} {% block content %}
{% if projects %}
{% for project in projects %} {{ helper.show_project(project, active_cat.short_name, current_user, upload_method) }} {% endfor %}
{% if pagination.pages > 1 %} {{ helper.render_pagination(pagination) }} {% endif %} {% else %}
{{pagination.total_count}} {{ active_cat.name }} Projects

{{_('Sorry, there are no published projects for this category yet')}}

{% endif %} {{ helper.broken_image() }}
{% endblock %}