{% extends "base.html" %} {% set active_page = "index" %} {% block morejs %} {% endblock %} {% block contents %}
{% if show_credits %}

{% trans %}Maintained by{% endtrans %}

{% endif %} {% if multiuser %}

{% trans user_login=user.login %}Welcome {{ user_display_name }}{% endtrans %}

{% else %}

{% trans %}Welcome!{% endtrans %}

{% endif %}
{% if can_create_project %} {% trans %}Create a new project{% endtrans %} {% endif %} {% if can_import_project %} {% trans %}Import a project file{% endtrans %} {% endif %} {% if can_change_role and is_multiuser %} {% trans %}Sponsor someone{% endtrans %} {% endif %} {% trans %}Demo project{% endtrans %} {% trans %}Archived projects{% endtrans %}
{% if projects|length > 1 %}
{% endif %} {% if not can_import_project %}

{% trans %}Please note that you cannot create a project at this time. You must be sponsored by a Canadian Access Federation (CAF) user.{% endtrans %}

{% endif %}
{% if projects %} {% for project in projects %} {% include 'partials/project_card.html' %} {% endfor %} {% else %} {% endif %}

{% trans %}No projects found matching your search.{% endtrans %}

{% if projects|length > 8 %}
{% endif %}
{% endblock %}