{% extends "base.html" %} {% load common bootstrap3 %} {% block page_title %}Repository - {{ repo }} {% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Repositories
  • {{ repo }}
  • {% endblock %} {% block content_title %} Repository - {{ repo }} {% endblock %} {% block content %}
    Name {{ repo.name }}
    ID {% if repo.id != None %} {{ repo.id }} {% endif %}
    Type {{ repo.get_repotype_display }}
    Architecture {{ repo.arch }}
    Security {% yes_no_img repo.security 'Security' 'Not Security' %}
    Enabled {% yes_no_img repo.enabled 'Enabled' 'Not Enabled' %}
    Mirrors {{ repo.mirror_set.count }}
    Requires Authentication {{ repo.auth_required }}
    {% if user.is_authenticated and perms.is_admin %}
    Are you sure you want to delete this Repository? This will also delete all Mirrors linked to this Repository.
    {% csrf_token %}
    {% else %}
    You do not have permission to delete this Repository.
    {% endif %}
    {% endblock %}