{% extends "base.html" %} {% block title %}{{ _("Distributions") }}{% end block %} {% block body %}

{{ _("This is a list of all distributions, that are maintained in this build service.") }} {{ _("You may click on one of them and see more details or jump directly to one of the repositories.") }}

{% for distro in distros %} {% end %}
{{ _("Distribution") }} {{ _("Repositories") }}
{{ distro.name }}
{{ distro.slogan }}
    {% for repo in distro.repositories %}
  • {{ repo.name }} - {{ repo.summary }}
  • {% end %}
{% if current_user and current_user.is_admin() %}
{{ _("New distribution") }}
{% end %} {% end block %}