{% extends "master.html" %} {% block title %}Projects · Anitya{% endblock %} {% block body %}
| 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 %}
|---|---|---|---|---|
| {{ project.name }} | {% if status != 'archived' %}{{ project.logs or '' }} | {% endif %} {% if status == 'failed' %}{{ project.error_counter }} | {% endif %} {% if status == 'updated' or status == 'archived' %}{{ project.last_check.strftime('%Y-%m-%d %H:%M:%S') if project.last_check else 'N/A' }} | {% endif %} {% if status == 'never_updated' %}{{ project.created_on.strftime('%Y-%m-%d %H:%M:%S') if project.created_on else 'N/A' }} | {% endif %}