{% extends 'dashboard/repos_list.html' %} {% load humanize %} {% block breadcrumbs %}
  • Home
  • Repos
  • {{ object }}
  • {% endblock %} {% block content %}

    {{ object.full_name }}

    Source: {{ object.source }}

    Name: {{ object.name }}

    VCS name: {{ object.vcs_name }}

    Full name: {{ object.full_name }}

    Owner: {{ object.owner }}

    Status: {{ object.status }}

    Admin link: {{ object }}

    Default branch: {{ object.default_branch }}

    On remote: {{ object.on_remote }}

    Is active: {{ object.is_active }}

    Error type: {{ object.error_value }}

    Last success fetch: {% if object.last_sync_success_time %}{{ object.last_sync_success_time|naturaltime}}{% else %}unknown{% endif %}.

    Total commits {{ object.known_commits }}. Last commit time: {% if object.contiguous_chain_of_commits_ends_at %}{{ object.contiguous_chain_of_commits_ends_at.commit_time }}{% else %}unknown{% endif %}

    {% if object.clones.all %}

    Clones

    {% for clone in object.clones.all %} {% endfor %}
    Node Status Updated Actions
    {{ clone.node }}:{{ clone.path }} ({{ clone.id }}) {{ clone.status }} {{ clone.modified|naturaltime }} {% include 'dashboard/inc/actions_small.html' with actions=clone_actions object=clone %}
    {% endif %}

    Actions

    {% include 'dashboard/inc/actions.html' with obj=object %} {% endblock %}