{% extends "base.html" %} {% block title %}{{ config['APP_TITLE'] }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %} {% if repos | length == 0 %}

No repositories

There are no repositories configured for this instance. Add one in the Settings or add it in the configuration.

{% else %}

Choose a project repository:

{% for repo, repo_config in repos.items() %}
{{ repo }}
{{ repo_config.full_name }}
{% endfor %}
{% endif %} {% endblock %}