{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{% trans "Status of repositories" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Status of repositories" %}

{% for sp in subprojects %}

{{ sp }}

{% if sp.is_repo_link %}

{% blocktrans with sp.repo as repo and sp.get_linked_repo.get_full_slug as slug %}Not showing status of linked repository. Check {{ repo }} instead.{% endblocktrans %}

{% else %}
{{ sp.get_repo.git.status }}
    
{% endif %} {% endfor %}
{% endblock %}