{% extends "base.html" %} {% load utils %} {% block title %} Advisory To-Dos {% endblock %} {% block extrahead %} {% endblock %} {% block content %}

Advisory To-Dos


{{ form.search }} {% if form.search.value %} {% endif %}
{% for todo in todo_list %} {% empty %} {% endfor %}
Aliases
Date
Resolved
# Advisories
Issue Type
{% with supported_curation="CONFLICTING_FIXED_BY_PACKAGES CONFLICTING_AFFECTED_PACKAGES CONFLICTING_AFFECTED_AND_FIXED_BY_PACKAGES" %} {% if todo.issue_type in supported_curation.split %} {% endif %}
{{ todo.alias }}
{{ todo.oldest_advisory_date|default:"NA" }}
{{ todo.is_resolved|yesno:"Yes,No" }}
{{ todo.advisories_count }}
{{ todo.get_issue_type_display }}
{% if todo.issue_type in supported_curation.split %}
{% endif %} {% endwith %}
No To-Dos found.
{% include "includes/pagination_v2.html" with page_obj=page_obj %}
{% endblock %}