{% extends "base.html" %} {% load i18n static contrib_tags %} {% block title %}{% trans 'Projects on Opin.me' %}{% endblock %} {% block content %}

{% trans 'Take part in a project' %}

{% for field in view.filter.form %} {% if field.name != 'ordering' %} {% else %}
{{ field }}
{% endif %}
{{ field }}
{% endfor %}
{% if project_list.count == 0 %}
{% trans 'No projects found' %}
{% endif %} {% if project_list.count > 0 %}
{% for project in project_list %}
{% include "euth_projects/includes/project_tile.html" with project=project %}
{% endfor %}
{% endif %} {% if is_paginated %} {% include "euth_contrib/includes/pagination.html" %} {% endif %}
{% endblock %}