{% extends "master.html" %} {% block title %}Projects · Anitya{% endblock %} {% block body %}
{{ projects_count }} projects found
Project name | {% if status != 'archived' %}Log content | {% endif %} {% if status == 'failed' %}Checks failed | {% endif %} {% if status == 'updated' or status == 'archived' %}Last update | {% endif %} {% if status == 'never_updated' %}Created on | {% endif %} {% for project in projects %}
---|---|---|---|---|
{{project.name}} | {% if status != 'archived' %}{{ project.logs }} | {% endif %} {% if status == 'failed' %}{{ project.error_counter }} | {% endif %} {% if status == 'updated' or status == 'archived' %}{{ project.last_check.strftime('%Y-%m-%d %H:%M:%S') }} | {% endif %} {% if status == 'never_updated' %}{{ project.created_on.strftime('%Y-%m-%d %H:%M:%S') }} | {% endif %}
No project found in this category.{% endif %}