{% extends "base.html" %} {% block title %}{{ _("Distribution") }}: {{ distro.name }}{% end block %} {% block body %}
{{ distro.description }} {{ distro.vendor }}

{{ _("Supported architectures") }}: {{ locale.list(distro.arches) or _("None") }}


{{ _("Binary repositories") }} ({{ len(distro.repositories) }})

{{ _("A binary repository is a composition of packages that are considered stable, unstable or in testing state by the developers.") }}

{{ _("Each repository can be enabled individually.") }} {{ _("Learn how to use them.") }}
{% module RepositoryTable(distro, distro.repositories) %}

{{ _("Source repositories") }} ({{ len(distro.sources) }})

{% module SourceTable(distro, distro.sources) %}
{% if current_user and current_user.is_admin() %}
{% end %} {% end block %}