{% load blocktrans trans from i18n %} {% load is_admin from privacy_tags %} {% load gravatar_url from gravatar %} {% load get_spam_score readthedocs_language_name readthedocs_language_name_local starts_with from ext_theme_tags %} {% load get_project_active_versions from projects_tags %} {% comment %} This template is the header at the top of project dashboard pages. There are two modes to this header, full and collapsed. The header always starts off as collapsed, to save visual space and can be expanded with the right label. {% endcomment %} {% block project_header %}
{% block project_header_metadata %}
{% block project_header_title %}
{% include "projects/includes/project_image.html" with project=project classes="micro rounded right spaced inline" %} {{ project.name | default:project.slug }}
{% endblock project_header_title %} {% block project_header_labels %}
{% include "includes/components/config_label.html" with icon="fa-solid fa-language" text=project.language|upper popup=project.language|readthedocs_language_name_local %} {% for organization in project.organizations.all %} {% include "includes/components/config_label.html" with icon="fa-solid fa-building" text=organization.name url=organization.get_absolute_url %} {% endfor %} {# The dropdown action button, to swap between expanded/collapsed #}
{% endblock project_header_labels %} {% block project_header_metadata_left %} {% endblock project_header_metadata_left %} {% block project_header_metadata_right %} {% endblock project_header_metadata_right %}
{% endblock project_header_metadata %}
{% block project_header_navigation %} {% if request.user.is_staff %} {% endif %} {% endblock project_header_navigation %} {% endblock project_header %}