aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/create_vulnerability.html
blob: f8e56d24acc66b1ace1ac5ab14c588f361d4ca1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "base.html" %}

{% load static %}
{% load projecttags %}
{% load humanize %}

{% block title %} Create New Vulnerability {% endblock %}

{% block pagecontent %}
  <div class="row">
		<div class="col-md-7" style="padding-left: 50px;">
			<li><a href="{% url 'landing' %}">Home</a></li><span class="divider">&rarr;</span>
			<li><a href="{% url 'manage' %}">Management</a></li><span class="divider">&rarr;</span>
		  <h1>Create New Vulnerability (Proposals)</h1>
		</div>
  </div>

<ul>
	<li>Gather information from customers, the field, and the community</li>
	<li>Create a new Vulnerability</li>
	<li>Create a tracking SRTCVE</li>
	<li>If and when possible, generate a community CVE submission</li>
</ul>

{% endblock %}