{% if dict_objects %}
{% if date_from|string == date_to|string %}
{{ date_from }} CVE:
{% else %}
{{ date_from }} to {{ date_to }} CVE:
{% endif %}
CVE-ID |
First Seen |
Last Seen |
Total |
Last days |
{% for cve_id in dict_objects %}
{{ cve_id }} |
{{ dict_objects[cve_id]['first_seen'] }} |
{{ dict_objects[cve_id]['last_seen'] }} |
{{ dict_objects[cve_id]['nb_seen'] }} |
|
{% endfor %}
{% else %}
{% if show_objects %}
{% if date_from|string == date_to|string %}
{{ date_from }}, No CVE
{% else %}
{{ date_from }} to {{ date_to }}, No CVE
{% endif %}
{% endif %}
{% endif %}