{% extends "repo.html" %} {% block repohead %} {% if repo.clone_status == 'IN_PROGRESS' %} {% endif %} {% endblock %} {% block content %} {% if repo.description %}
{{ repo.description }}
{% endif %}

clone

{% with read_only, read_write = repo|clone_urls %}
read-only
{{read_only}}
read/write
{{read_write}}
{% endwith %}
{% if repo.clone_status == 'IN_PROGRESS' %}
A clone operation is currently in progress.
{% elif repo.clone_status == 'ERROR' %}
An error occured while cloning: {{repo.clone_error}}
{% endif %}

Nothing here yet!

{% endblock %}