aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/maintenance.html
blob: 63c60f333b3a6a05cb3e834e867914dcd3a5f75d (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{% extends "base.html" %}

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

{% block title %} Maintenance tools {% endblock %}
{% block pagecontent %}
      <div class="row">
            <div class="col-md-7" style="padding-left: 50px;">
              <h1>Maintenance</h1>
            </div>
      </div>
      <div class="row">
        <div class="jumbotron well-transparent">

            <div class="col-md-6">
				<div>
				<table class="table table-striped table-condensed" data-testid="landing-hyperlinks-table">
					<thead>
						<tr>
							<th>Action</th>
							<th>Description</th>
						</tr>
					</thead>

					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'history_cve' %}">History CVE</a></td>
						<td>Examine History for CVEs</td>
					</tr>
					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'history_vulnerability' %}">History Vulnerabilities</a></td>
						<td>Examine History for Vulnerabilities</td>
					</tr>
					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'history_investigation' %}">History Investigations</a></td>
						<td>Examine History for Investigations</td>
					</tr>
					<tr>
						<td><a class="btn btn-info btn-lg" href="{% url 'history_defect' %}">History Defects</a></td>
						<td>Examine History for Defects</td>
					</tr>

				</table>
				</div>

            </div>

		  <div class="col-md-5">
			<b>Quick Info</b>
			<div class="well">
				<dl class="dl-horizontal">

					<dt>CVE History: Total Count =</dt>
					<dd>
						{{history_cve_total}}
					</dd>
					<dt>Vulnerability History: Total Count =</dt>
					<dd>
						{{history_vulnerability_total}}
					</dd>
					<dt>Investigation: Total Count =</dt>
					<dd>
						{{history_investigation_total}}
					</dd>
					<dt>Defect: Total Count =</dt>
					<dd>
						{{defect_investigation_total}}
					</dd>

			   </dl>
			</div>
		  </div>

        </div>
      </div>

{% endblock %}