{% extends "projects/base.html" %}
{% load trans from i18n %}
{# djlint:off #}
{% block title %}{% trans "Projects" %}{% endblock title %}
{# djlint:on #}
{% block notifications %}
{# User notifications only #}
{{ block.super }}
{% endblock notifications %}
{% block content %}
{% url "projects_import" as projects_import_url %}
{% url "socialaccount_connections" as social_accounts %}
{% include "projects/partials/project_list.html" with objects=project_list %}
{% comment %}
Include an announcement in the side bar.
The announcement template to include comes from the application view `ProjectDashboard`.
{% endcomment %}
{% if announcement %}
{% include announcement %}
{% endif %}
{% trans "Help topics" %}
{% trans "Tutorials" %}
{% include "includes/elements/link.html" with url="https://docs.readthedocs.io/page/tutorial/index.html" text="Getting started" is_external=True class="item" %}
{% include "includes/elements/link.html" with url="https://docs.readthedocs.io/page/intro/import-guide.html" text="Creating a project" is_external=True class="item" %}
{% include "includes/elements/link.html" with url="https://docs.readthedocs.io/page/intro/doctools.html" text="Quickstart with popular tools" is_external=True class="item" %}
{% trans "Reference" %}
{% include "includes/elements/link.html" with url="https://docs.readthedocs.io/page/config-file/index.html" text="Configuration file reference" is_external=True class="item" %}
{% include "includes/elements/link.html" with url="https://docs.readthedocs.io/page/build-customization.html" text="Build process customization" is_external=True class="item" %}