{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load i18n static %} {% block title %}{% trans "Projects" %}{% endblock %} {% block content %} {% adminbar %} {% slot header %}{% trans "All Projects" %} ({{ table.rows|length }}){% endslot %} {% slot sub_heading %}{% trans "View, Search and filter all projects" %}{% endslot %} {% endadminbar %}
{% if table %} {% include "funds/includes/table_filter_and_search.html" with filter_form=filter_form search_term=search_term search_placeholder="projects" use_search=True filter_action=filter_action use_batch_actions=True filter_classes="filters-open" %} {% render_table table %} {% else %}

{% trans "No Projects Available." %}

{% endif %}
{% endblock content %} {% block extra_css %} {{ filter.form.media.css }} {% endblock %} {% block extra_js %} {{ filter.form.media.js }} {% endblock %}