{% extends "master.html" %} {% block title %}Projects · Anitya{% endblock %} {% block body %}

Projects {% if status == 'updated' %} (Updated successfully) {% elif status == 'failed' %} (Failed to update) {% elif status == 'archived' %} (Archived) {% elif status == 'never_updated' %} (Never updated) {% endif %}

{{ projects_count }} projects found
{% if status != 'archived' %} {% endif %}
{% if total_page > 1 %}
{% endif %}
{% if projects %} {% if status != 'archived' %} {% endif %} {% if status == 'failed' %} {% endif %} {% if status == 'updated' or status == 'archived' %} {% endif %} {% if status == 'never_updated' %} {% endif %} {% for project in projects %} {% if status != 'archived' %} {% endif %} {% if status == 'failed' %} {% endif %} {% if status == 'updated' or status == 'archived' %} {% endif %} {% if status == 'never_updated' %} {% endif %} {% endfor %}
Project nameLog contentChecks failedLast updateCreated on
{{ project.name }} {{ project.logs or '' }} {{ project.error_counter }} {{ project.last_check.strftime('%Y-%m-%d %H:%M:%S') if project.last_check else 'N/A' }} {{ project.created_on.strftime('%Y-%m-%d %H:%M:%S') if project.created_on else 'N/A' }}
{% else %}
No project found in this category.
{% endif %}
{% if total_page > 1 %}
{% endif %} {% endblock %}