{% if projects %}
{% if active_cat.short_name=="featured"%}
{{pagination.total_count}} {{ _('Featured Projects') }}
{{ _('A special selection of the most interesting projects') }}
{% elif active_cat.short_name=='draft' %}
{{pagination.total_count}} {{ _('Draft Projects')}}
{{ _('Work in progress projects') }}
{% else %}
{{pagination.total_count}} {{ active_cat.name }} Projects
{{ active_cat.description }}
{% endif %}
{% 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 %}