Manage Products
Add and manage products for security patch analysis
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% if error %}
{{ error }}
{% endif %}
{% if products %}
{% for name, details in products.items() %}
{{ name|title }}
{{ details.repo_url }}
Delete
{% endfor %}
{% else %}
{% endif %}