{% extends "main.html" %} {% load common %} {% load url from future %} {% block title %}Repositories {{ repo }} {% endblock %} {% block content_title %}Repository Information{% endblock %} {% block breadcrumbs %}{{ block.super }} › Repositories › {{ repo }} {% endblock %} {% block content %}

{{ repo }} Details

Name {{ repo.name }}
ID {% if repo.repo_id != None %} {{ repo.repo_id }} {% endif %}
Type {{ repo.get_repotype_display }}
Architecture {{ repo.arch }}
Security {% yes_no_img repo.security 'False' 'Security' 'Not Security' %}
Enabled {% yes_no_img repo.enabled 'False' 'Enabled' 'Not Enabled' %}
Mirrors {{ repo.mirror_set.count }}
Requires Authentication {{ repo.auth_required }}
{% if user.is_authenticated %} {% if perms.is_admin %}

Actions

Delete this repository {% if repo.enabled %} Disable this repository {% else %} Enable this repository {% endif %} {% if repo.security %} Mark as Non-Security repo {% else %} Mark as Security repo {% endif %} Edit this repository
{% endif %} {% endif %}

Mirrors

{% gen_table repo.mirror_set.all %}

Hosts with this Repository

{% gen_table repo.host_set.all.distinct %}

OS Groups with this Repository

{% gen_table repo.osgroup_set.all.distinct %}
{% endblock %}