{% extends "coprs/show.html" %} {% from "_helpers.html" import copr_url, render_form_errors, render_repository_line %} {% block title %}Outdated repositories{% endblock %} {% block header %}Outdated repositories{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Outdated repositories

These projects have available repositories for at least some outdated chroots. Unless you periodically take an action and extend the time for they should be preserved, they are going to be removed in the future. Please see Outdated repos removal policy in the Copr Documentation.

{% if form %} {{ render_form_errors(form=form) }} {% endif %} {% for project in projects %} {% if project.outdated_chroots %}

{{ project.full_name }}

{% for chroot in project.outdated_chroots %} {{ render_repository_line(chroot) }} {% endfor %}
Release Architecture Remaining time Action
{% endif %} {% endfor %} {% endblock %}