{% extends "layout.html" %} {% block title %}Project List{% endblock %} {% block header %}Project List{% endblock %} {% from "_helpers.html" import render_pagination %} {% block body %} {% if g.user %}
User Image

{{ g.user.name }}

{{ g.user.coprs_count }}

projects


Copr status
Recent builds

{% endif %} {% if not g.user and not fulltext%}

Copr is an easy-to-use automatic build system providing a package repository as its output.

Start with making your own repository in these three steps:

  1. choose an architecture and system you want to build for
  2. provide Copr with src.rpm packages available online
  3. let Copr do all the work and wait for your new repo

For more information please visit Copr wiki

{% endif %}
{% if g.user %}
+ add a new project
{% endif %} {% if fulltext %}
Displaying results for search "{{ fulltext }}"
{% endif %} {% for copr in coprs %}
{{ copr.owner.name }}/{{ copr.name }}

{{ copr.description|markdown|default('Description not filled in by author. Very likely personal repository for testing purpose, which you should not use.', true) }}

{% for mock_chroot in copr.active_chroots %} {{ mock_chroot.os_release|os_name_short(mock_chroot.os_version) }}.{{ mock_chroot.arch }}{% if not loop.last %}, {% endif %} {% endfor %}

{% else %}

No projects...

{% endfor %}
{% endblock %}