{% extends "base.html" %} {% block content %}
{% if is_empty %}

No repos registered. Run holoctl repo add <path>.

{% else %}
{% for r in items %}
{% include "icons/repo.svg" %}
{{ r.name }}
{{ r.path }}
{{ r.branch_display }} {{ r.ticket_count }} tickets
{% endfor %}
{% endif %}
{% endblock %}