{% extends "profile.html" %} {% block title %} {{user.canonical_name}}'s git repositories {% endblock %} {% block sidebar %} {% if user.id == current_user.id %} Create new repository {{icon("caret-right")}} Clone existing repository {{icon("caret-right")}} {% endif %} {% endblock %} {% block content %} {% if repos or search %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% endif %} {% if search and not repos %}
No repositories found for "{{search}}".
{% elif not repos %}
This user does not have any git repositories.
{% endif %}
{% for repo in repos %}

~{{user.username}}/{{repo.name}} {% if repo.visibility.value != 'PUBLIC' %} {{ repo.visibility.value.lower() }} {% endif %}

{% if repo.description %}

{{ repo.description }}

{% endif %}
{% endfor %}
{{ pagination() }} {% endblock %}