{% extends "forms-side.html" %} {% load forms common %} {% load url from future %} {% block extrahead %} {{ edit_form.media }} {% endblock %} {% 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 %}

Edit

{% csrf_token %} {% form_as_div edit_form %}
{% else %}

No permission to edit this Repository.

{% endif %} {% endif %} {% endblock %}