{% extends "base.html" %} {% load projecttags %} {% block title %} {{object.name}} - SRTool {% endblock %} {% block pagecontent %}
{% if is_edit %}
{% csrf_token %} {% endif %}
{% include "srtool_metadata_include.html" with default_category="CVE" default_url="cve" %}
{% for details,state,id,cve_html in cve_list_table %}
{% if 'Local' == id %} {% include 'cve-nist-local.html' %} {% elif 'Edit' == id %} {% include 'cve-edit-local.html' %} {% else %} {% include 'cve-nist.html' %} {% endif %}
{% endfor %}
{% if is_edit %} {% csrf_token %} {% endif %}

History

{% if cve_list_table.1.0.cve_history.all %} {% for c in cve_list_table.1.0.cve_history.all %} {% endfor %} {% else %} {% endif %}
Comment Date Author
{{ c.comment }} {{ c.date }} {{ c.author }}
No history found

{% endblock %}