aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/sources.html
blob: 1b017c062608c58e0fbe662e00082144151e9f2c (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
{% extends "base.html" %}

{% load projecttags %}

{% block title %} Data Sources - SRTool {% endblock %}

{% block pagecontent %}

<div class="row">
  <!-- Breadcrumbs -->
	<div class="col-md-12">
		<ul class="breadcrumb" id="breadcrumb">
			<li><a href="{% url 'landing' %}">Home</a></li><span class="divider">&rarr;</span>
			<li>Data Sources </li>
		</ul>
	</div>
</div>

<!-- Begin container -->

<div class="row">
  <div class="col-md-12">
    <div class="page-header build-data">
        <h1>Data Sources</h1>
    </div>
  </div>
</div>

<div class="row">
	<table class="table table-striped table-condensed" data-testid="vuln-hyperlinks-table">
		<thead>
			<tr>
				<th>Data</th>
				<th>Source</th>
				<th>Type</th>
				<th>Description</th>
				<th>Cache File Path</th>
				<th>Upstream URL</th>
				<th>Policy</th>
			</tr>
		</thead>

		{% if object.all %}
		  {% for p in object.all %}
			<tr>
				<td>{{ p.data }} </td>
				<td>{{ p.source }} </td>
				<td>{{ p.type }} </td>
				<td>{{ p.description }} </td>
				<td>{{ p.file_path }} </td>
				<td>{{ p.url }} </td>
				<td> tbd </td>
			</tr>
		  {% endfor %}
		{% else %}
			<tr>
				<td>No data sources found</td>
			</tr>
		{% endif %}
	</table>
</div>

<div class="row">
  <div class="col-md-5">
	<div>
		<h3>Update Policies</h3>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
	</div>
	<p/>
  </div>
</div>



{% endblock %}