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

Welcome back, {{ current_user.username }}! This is your git hosting service. Documentation for its use is available here.

Create new repository {{icon("caret-right")}} Clone existing repository {{icon("caret-right")}}

{% if repos and len(repos) %}
{% for repo in repos %}

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

{% if repo.description %}

{{ repo.description }}

{% endif %}
{% endfor %}
More on your profile {{icon("caret-right")}} {% else %}

You don't have any repositories.

{% endif %}
{% endblock %}